網路城邦
回本城市首頁 鳳新學生*網路自治市
市長:手長  副市長: 如朕親臨
加入本城市推薦本城市加入我的最愛訂閱最新文章
udn城市學校社團高中職【鳳新學生*網路自治市】城市/討論區/
討論區功課討論,求救就來這 字體:
上一個討論主題 回文章列表 下一個討論主題
電腦作業b
 瀏覽458|回應0推薦0


等級:8
留言加入好友

#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() 主程式 */
}

回應 回應給此人 推薦文章 列印 加入我的文摘

引用
引用網址:https://city.udn.com/forum/trackback.jsp?no=60623&aid=3147498