Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
HS tự tìm hiểu giá điện và tham khảo chương trình sau
+ Bậc 1: Từ 0 – 50kWh: 1.678 đồng/kWh.
+ Bậc 2: Từ 51 – 100kWh: 1.734 đồng/kWh.
+ Bậc 3: Từ 101 – 200kWh: 2.014 đồng/kWh.
program bai1;
uses crt;
var a:longint; tiendien:real;
begin
clrscr;
readln(a);
if a<=100 then tiendien:=a*1000;
if a<=150 then tiendien:=100*1000+2000*(a-100);
if a<=200 then tiendien:=100*1000+2000*50+2500*(a-150);
if a>=200 then tiendien:=100*1000+2000*50+2500*50+3000*(a-200);
Writeln('so tien dien trong thang la:',tiendien:9:0,'VND');
readln;
END.
uses crt;
var n,s,i,j:longint;
st:real;
begin
clrscr;
write('nhap so kw su dung=');readln(n);
s:=0;
if n<=50 then
begin
for i:=1 to n do
s:=s+1500;
end
else begin
for i:=1 to 50 do
s:=s+1500;
for j:=51 to n do
s:=s+2000;
end;
st:=s+s*5/100;
writeln('so tien tong cong la: ',st:4:2);
readln;
end.
program tinh_tien_dien;
var
kwh, tien_chua_thue, tien_thue, tien: real;
begin
writeln('Nhap so kWh dien tieu thu trong thang:');
readln(kwh);
if kwh <= 50 then
tien_chua_thue := kwh * 600
else if kwh <= 100 then
tien_chua_thue := 50 * 600 + (kwh-50) * 1004
else
tien_chua_thue := 50 * 600 + 50 * 1004 + (kwh-100) * 1214;
tien_thue := tien_chua_thue * 0.1;
tien := tien_chua_thue + tien_thue;
writeln('So tien dien phai tra trong thang la: ', tien:0:0, ' VND (trong do, thue 10% la ', tien_thue:0:0, ' VND, tien chua thue la ', tien_chua_thue:0:0, ' VND).');
end.