blob: afb58c98fc660a5e4f0c3284d230fa751d4f118d (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 2, Problem 16
clc;
V=240; //supply voltage
I=13; //current
t=30; //time in hours
P=V*I; //power
E=P*t; //energy
printf("Energy used per week = %.1f kWh\n\n",E/1000);
printf("hence weekly cost of electricity = %.2f £ euro",(E*12.5/1000)/100);
|