/*
國外購買東西時往往需要繳稅,然後編寫乙個程式提示使用者輸入購物的每項價值、項數和折扣。然後這個程式應該計算和輸出總值,應付稅額和應付款額。公式如下(假設稅率為6%):
總值 = 項數 × 每項價值
折扣後總值 = 總值 - (折扣率 × 總值)
應付稅額 = 總值 × 稅率
應付款項= 折扣後的總值+ 應付稅額
*/float price;
int num;
float fax=0.06;
float saleoff;
float total=0;
float faxfinal=0;
float totalfinal=0;
printf
("請輸入商品單價\n");
scanf("%f",&price);
printf
("請輸入商品數量\n");
scanf("%d",&num);
printf
("請輸入商品折扣\n");
scanf("%f",&saleoff);
total=price*num;
faxfinal=total*fax;
totalfinal=total-total*saleoff+faxfinal;
printf("
總金額%.2f\n",total);
printf("
應付稅率
%.2f\n",faxfinal);
printf("
應付款額
%.2f\n",totalfinal);
return0;}
2.#include
int main(int argc, const
char * argv)
02乙個簡單的c語言例項(hello world)
二 結構分析 三 增強程式可讀性 四 程式除錯 include intmain void 乙個簡單的c程式 一 內容分析 include 在c世界中,人們稱出現在檔案頂部的資訊集合為頭,c實現通常都帶有許多標頭檔案。標頭檔案可以定義常量,或者說明函式名以及該函式如何使用。但是函式的實際 被包含在乙個...
c語言 實現乙個棧
include include include include 入棧出站操作 typedef struct nodenode,pnode typedef struct stack pstack,stack void init pstack void push pstack,int bool isem...
C語言實現乙個簡易的掃雷2
ifndef game h define game h define crt secure no warnings 1 include include include include define rows 11 define cols 11 define count 10 void init bo...