解题思路:
注意事项:
参考代码:
#include <stdio.h> int main() { int profit; float bonus; scanf("%d", &profit); if(profit <= 100000) { bonus = profit*0.1; } else if(profit > 100000 && profit <= 200000){ bonus = ((profit - 100000) * 0.075 + 10000*0.1 ); } else if(profit > 200000 && profit <= 400000){ bonus = (profit - 200000) * 0.05 + 20000 * 0.1; } else if(profit > 400000 && profit <= 600000){ bonus = (profit - 400000) * 0.03 + 40000 * 0.1; }else if(profit > 600000 && profit <= 1000000){ bonus = (profit - 600000) * 0.015 + 600000 * 0.1; }else { bonus = (profit - 1000000) * 0.01 + 1000000 * 0.1; } printf("%.0f\n", bonus); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:812 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:498 |
简单的a+b (C语言代码)浏览:616 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:570 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:641 |
【亲和数】 (C语言代码)浏览:624 |
DNA (C语言代码)浏览:793 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:727 |
1050题解(结构体数组与结构体指针的使用)浏览:1209 |
C二级辅导-进制转换 (C语言代码)浏览:740 |