K
Khách

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.

24 tháng 3 2022

giúp mình với, mình cần gấp

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.

18 tháng 11 2022

lấy 50 ở đâu ra

 

11 tháng 9 2020

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.

Chọn D

25 tháng 2 2023

Đề không có đáp án đúng, bạn kiểm tra lại đề nhé

20 tháng 3 2022

Program HOC24;

var i,n: integer;

S,P: longint;

begin

write('Nhap n: '); readln(n);

{..............................................}

readln

end.

-----------------------------------------------------------

Bạn điền vào {........................} theo từng bài nhé

a) S:=0; 

for i:=1 to N do if i mod 2=1 then s:=s+i;

write('S= ',s);

b)

S:=0;

for i:=1 to N do if i mod 2=0 then s:=s+i;

write('S= ',s);

c) P:=1;

for i:=1 to N do if i mod 2=0 then p:=p*i;

write('P= ',p);

d)

P:=1;

for i:=1 to N do if i mod 2=1 then p:=p*i;

write('P= ',p);

D
datcoder
CTVVIP
14 tháng 10 2023

Chọn D.