第1个回答 2019-12-25
#include
<stdio.h>
#include
<conio.h>
//1
#define
TaxRate
0.05
//2
int
main(void)
{
float
amount,income;
printf("Enter
amount:
");
scanf("%f",
&amount);
income
=
amount
*
(TaxRate
+
1);
//3
printf("Income(dollars):%f
",
income);
//4
getch();
return
0;
}
使用getch()函数要用到头文件#include
<conio.h>
有修改的地方我都标注了