根據使用者消耗的單位數,產生電費帳單。如果消耗的單位數較多,則單位費用的費率也會增加。
應用的邏輯如果使用者消耗的最低單位如下所示:
if (units < 50){ amt = units * 3.50; unitcharg = 25; }
應用的邏輯如果單位在50到100之間如下所示−
else if (units <= 100){ amt = 130 + ((units - 50 ) * 4.25); unitcharg = 35; }
如果單位在100 到200 之間,則應用的邏輯如下所述-
else if (units <= 200){ amt = 130 + 162.50 + ((units - 100 ) * 5.26); unitcharg = 45; }
應用的邏輯如果單位數量超過200如下所述−
amt = 130 + 162.50 + 526 + ((units - 200 ) * 7.75); unitcharg = 55;
因此,最終金額將按照以下邏輯產生-
total= amt+ unitcharg;
以下是產生電費單的C 程式-
現場演示
#include <stdio.h> int main(){ int units; float amt, unitcharg, total; printf(" Enter no of units consumed : "); scanf("%d", &units); if (units < 50){ amt = units * 3.50; unitcharg = 25; }else if (units <= 100){ amt = 130 + ((units - 50 ) * 4.25); unitcharg = 35; }else if (units <= 200){ amt = 130 + 162.50 + ((units - 100 ) * 5.26); unitcharg = 45; }else{ amt = 130 + 162.50 + 526 + ((units - 200 ) * 7.75); unitcharg = 55; } total= amt+ unitcharg; printf("electricity bill = %.2f", total); return 0; }
當執行上述程式時,會產生以下結果-
Enter no of units consumed: 280 electricity bill = 1493.50
以上是C程序產生電費帳單的詳細內容。更多資訊請關注PHP中文網其他相關文章!