Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

โปรแกรม C เพื่อสร้างบิลค่าไฟฟ้า


ตามหน่วยที่ผู้ใช้ใช้ ค่าไฟฟ้าจะถูกสร้างขึ้น หากจำนวนหน่วยบริโภคมากกว่านั้น อัตราของการชาร์จต่อหน่วยก็จะเพิ่มขึ้นด้วย

ตรรกะที่ใช้ ถ้าหน่วยขั้นต่ำ ถูกใช้โดยผู้ใช้ดังนี้ −

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