[C语言][100例题]企业利润计算
#include <stdio.h>/*
题目:企业发放的奖金根据利润提成。
1.利润(I)低于或等于10万元时,奖金可提10%;
2.利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提成7.5%;
3.20万到40万之间时,高于20万元的部分,可提成5%;
4.40万到60万之间时,高于40万元的部分,可提成3%;
5.60万到100万之间时,高于60万元的部分,可提成1.5%,
6.高于100万元时,超过100万元的部分按1%提成,
从键盘输入当月利润I,求应发放奖金总数?
*/
int _2_main()
{
long int profit,bonus;
printf("请输入当月利润:");
scanf("%ld",&profit);
// 当利润超过某个范围时,奖金要加上这个范围以的奖金
// 当利润超过20万时,要加上10万的奖金和20万的奖金
long int full_1,full_2,full_4,full_6,full_10;
full_1= 10000;
full_2= full_1 + 7500;
full_4= full_2 + 1000;
full_6= full_4 + 6000;
full_10 = full_6 + 6000;
if(profit<=100000){
bonus = profit*0.1;
}else if(profit<=200000){
bonus = full_1 +(profit-100000)*0.075;
}else if(profit<=400000) {
bonus = full_2 + (profit-200000)*0.05;
}else if(profit<=600000) {
bonus = full_4 + (profit-400000)*0.03;
}else if(profit<=1000000) {
bonus = full_6 + (profit-600000)*0.015;
}else{
bonus = full_10 + (profit-10000000)*0.01;
}
printf("可以获得的奖金是: %ld",bonus);
return 0;
}
页:
[1]