参考代码:
#include<iostream> #include<cstdio> using namespace std; int main() { double time,wage; while(cin>>time>>wage) { if(time<=40) printf("%.2lf\n",time*wage); else if(time>40&&time<=50) printf("%.2lf\n",40*wage+(time-40)*wage*1.5); else if(time>50) printf("%.2lf\n",40*wage+10*wage*1.5+(time-50)*2*wage); } return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:685 |
点我有惊喜!你懂得!浏览:1415 |
点我有惊喜!你懂得!浏览:1166 |
上车人数 (C语言代码)浏览:1257 |
C二级辅导-进制转换 (C语言代码)浏览:551 |
C语言训练-角谷猜想 (C语言代码)浏览:1767 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:564 |
A+B for Input-Output Practice (IV) (C++代码)浏览:713 |
哥德巴赫曾猜测 (C语言代码)浏览:1147 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:790 |