首页 > 代码库 > 分支-11. 计算工资(15)

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

#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;
}