1004: 这种促销合算吗
1004: 这种促销合算吗 Time Limit: 1 Sec Memory Limit: 128 MB 64bit IO Format: %lld Submitted: 341 Accepted: 92 [Submit][Status][Web Board] Description 购物中心庆新年打折促销,提出买满百元将打9折。有用户发现某衣服促销前售价为689元,但在在活动期间标价已是998元,这样的衣服合算吗?(如果打折后的价格低于促销前的价格,则合算,否则不合算)
Input 包含多组测试数据,每组测试数据占一行,包含2个数据(float),分别为:促销前的价格和活动期间的价格。
Output 每组测试数据输出占一行,合算用“yes”表示,不合算用“no”表示。
Sample Input 689 998
Sample Output no
#include <stdio.h> int main() { float a,b; while(scanf("%f%f",&a,&b)!=EOF) { if(b<a) printf(“yes\n”); if(b>=a) if(b<100) printf(“no\n”); else if(a<=0.9*b) printf(“no\n”); else printf(“yes\n”); } return 0; }