c基础编程:(2)根据利润计算奖金

题目:企业发放的奖金根据利润提成。

  利润低于或等于10万元时,奖金可提10%;

  利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可提成7.5%;

  20万到40万之间时,高于20万元的部分,可提成5%;

  40万到60万之间时高于40万元的部分,可提成3%;

  60万到100万之间时,高于60万元的部分,可提成1.5%;

      高100万元时,超过100万元的部分按1%提成,从键盘输入当月利润I,求应发放奖金总数?

程序分析:请利用数轴来分界,定位。注意定义时需把奖金定义成整型或长整型。

#include "stdio.h"



int main() {

	int profit;

	printf("Please input the profit number and kick the Enter: \n");

	scanf("%d", &profit);

	int bonus = CountBonus(profit);

	printf("profit: %d,  bonus: %d\n", profit, bonus);

	return 0;

}



int CountBonus(int profit) {

	int flag, bonus = 0, bonus0, bonus1, bonus2, bonus4, bonus6, bonus10;

	flag = profit/100000;

	bonus1 = bonus  + 100000 * 0.1;

	bonus2 = bonus1 + 100000 * 0.75;

	bonus4 = bonus2 + 200000 * 0.5;

	bonus6 = bonus4 + 200000 * 0.3;

	bonus10= bonus6 + 200000 * 0.15;

	

	switch(flag) {

		case 0 : 

			bonus = bonus1;

			break;

		case 1 : 

			bonus = bonus1 + (profit - 100000) * 0.75;

			break;

		case 2 :

		case 3 :

			bonus = bonus2 + (profit - 200000) * 0.5;

			break;

		case 4 :

		case 5 : 

			bonus = bonus4 + (profit - 400000) * 0.3;

			break;

		case 6 : 

		case 7 : 

		case 8 : 

		case 9 :

			bonus = bonus6 + (profit - 600000) * 0.15;

			break;

		default: 

			bonus = bonus10 + (profit - 1000000) * 0.1;

			break;

	}



	return bonus;

}

  

你可能感兴趣的:(编程)