编写程序要求输入一周中的工作小时数 然后打印工资总额 税金 以及净工资

//基本工资 10.00 美元/小时 加班(超过40小时)1.5倍时间 税率 前300美元为%15 下一个150美元为%20 余下的为%25 不关心是否符合税法
#include "stdafx.h"
#include "stdlib.h"
#define BS 10.00
#define LTR 0.15
#define STR 0.2
#define OTR 0.25

int main()  
{  
	int time,a,b,sum=0;
	double x=0.0,y=0,z=0;
	double ave=0;

	printf("\aPlease input the times:_____\b\b\b\b\b");
	scanf("%d",&time);

	if(time>40)
	{
		time*=BS;
		sum+=(BS*1.5)*time;
	}
	else
		sum=time*=BS;

	printf("The wage is %d\n",sum);

	a=sum-300;
	b=a-150;
	x=b*OTR;
	y=(sum-a)*LTR;
	z=(sum-b)*STR;

	if(sum>300)
		printf("Tax is %0.2f\n",x+y+z);
	else
		printf("Need not pay tax\n");

	printf("Net salary is %0.2f\n",sum-(x+y+z));
	system("pause");

    return 0;
}

你可能感兴趣的:(C)