#include <stdio.h>
#include <conio.h>
#define MSG " 含稅金額:"
#define TAX_RATE 請自行輸入<0.5之數值
int price=請自行輸入<10000之數值;
float get_tax(void);
int main(void)
{
float total;
total = price + get_tax();
printf("%s %.2f\n", MSG, total);
getch();
return 0;
}
float get_tax()
{
float tax;
tax=price*TAX_RATE;
return(tax);
}
本文於 修改第 3 次