#include <stdio.h> /* 輸出入函式標頭檔 */
#include <conio.h> /*103座號b你的姓名*/
#define MSG " 含稅金額:" /* 提示訊息 */
#define TAX_RATE 小於0.5的數 /* 稅率 */
int price=小於10000的數; /* 宣告 price 售價為全域整數變數並設定初值 */
float get_tax(void);
int main(void) /* 程式進入點 */
{
float total; /* 宣告 total 含稅金額為區域變數,資料型別為浮點數 */
total = price + get_tax(); /* 將售價加稅金 存入 total 變數中 */
printf("%s %.2f\n", MSG, total); /* 顯示含稅金額 */
getch();
return 0; /* 結束程式執行 */
}
float get_tax() /* 計算稅金 */
{
float tax; /* 宣告 tax 稅金為全域變數,資料型別為浮點數 */
tax=price*TAX_RATE; /* 將售價乘以稅率存入 tax 變數 */
return(tax); /*將 tax 稅金傳回 main() 主程式 */
}