#include <stdio.h>
int main(int argc, char **argv)
{ //定义四个变量 g每小时固定的工资 40 固定工作时间 pay工资 hours员工的实际工作时间
const double g=9;
const int s=40;
double pay=0.0;
int hours;
// 输入员工的实际工作时间
printf("请输入员工 工作时间。");
scanf("%d",&hours);
printf("\n");
//判断 工作时间是不是大于固定工作时间 如果大于执行加薪运算 如果不是按照正常时薪计算
if(hours>s){
pay=s*g+(hours-s)*(g*1.5);
}else{
pay=hours*g;
}
//输出工资数目
printf("应付员工工资%f",pay);
return 0;
}
原文地址:https://www.cnblogs.com/ligouhai/p/9865150.html
时间: 2024-10-12 15:04:42