사용자가 소비한 단위 수를 기준으로 전기 요금을 생성합니다. 더 많은 단위를 소비하면 단위 요금당 요금도 증가합니다.
적용 로직 사용자가 가장 낮은 단위를 소비하는 경우 는 다음과 같습니다.
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 Program -
Live Demonstration
#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 중국어 웹사이트의 기타 관련 기사를 참조하세요!