标签:输入 数据 else code font color 输出 规模 cout
试题编号:201612-2试题名称:工资计算时间限制:1.0s内存限制:256.0MB
#include<iostream> #include<cmath> using namespace std; int main(){ int hou; int s; cin>>hou; if(hou<=3500) s=hou; else if(hou<=4955) s=(hou-3500)/0.97+3500; else if(hou<=7655) s=3500+(hou-3605)/0.9; else if(hou<=11255) s=(hou-4055)/0.8+3500; else if(hou<=30755) s=(hou-4505)/0.75+3500; else if(hou<=44755) s=(hou-6255)/0.7+3500; else if(hou<=61005) s=(hou-9005)/0.65+3500; else s=(hou-17005)/0.55+3500; cout<<s; return 0; }
标签:输入 数据 else code font color 输出 规模 cout
原文地址:https://www.cnblogs.com/bernieloveslife/p/9734954.html