码迷,mamicode.com
首页 > 其他好文 > 详细

分支-11. 计算工资(15)

时间:2014-07-02 17:48:01      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:os   io   ios   re   return   man   

#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    int y,t;
    float s;
    cin>>y>>t;
    cout<<setiosflags(ios::fixed)<<setprecision(2);
    if(y<=4)
        if(t<=40)
            s=30*t;
        else
            s=1200+(t-40)*45;
    else
        if(t<=40)
            s=50*t;
        else
            s=2000+(t-40)*75;
    cout<<s<<endl;
    return 0;
}

分支-11. 计算工资(15),布布扣,bubuko.com

分支-11. 计算工资(15)

标签:os   io   ios   re   return   man   

原文地址:http://www.cnblogs.com/gnodidux/p/3819831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!