Bài 1 : Một giáo viên vào lớp và phát kẹo cho các em học sinh theo qui tắc sau : em đầu tiên được nhận 1 viên kẹo, em tiếp theo nhận số kẹo nhiều hơn em trước đó 3 viên. Hỏi nếu lớp học có 20 học sinh thì tổng số kẹo phải có để Giáo viên phát đủ cho cả lớp. Bài 2 : Nhập M từ bàn phím (M>0), Tính giá trị của biểu thức Tong = 12 + 22 + 32 + ... + M2 Bài 3 : Nhập M, N từ bàn phím (M < N). Tính tổng các số chia hết cho 3 trong pham vi từ M đến N.

1 câu trả lời

1)

uses crt;

var n,s,i:longint;

begin

clrscr;

for i:=1 to 20 do s:=s+3;

writeln(s);

end.

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

uses crt;

var n,s,i:longint;

begin

clrscr;

for i:=20 downto 1 do s:=s+3;

writeln(s);

end.

2)

uses crt;

var m,t,i:longint;

begin

clrscr;

readln(m);

if m<0 then writeln('sai')

else

begin

for i:=1 to n do t:=t+sqr(i);

writeln(t);

end;

end.

-----------

uses crt;

var m,t,i:longint;

begin

clrscr;

readln(m);

if m<0 then writeln('sai')

else

begin

for i:=m downto 1 do t:=t+sqr(i);

writeln(t);

end;

end.

3)

uses crt;

var m,n,i,s:longint;

begin

clrscr;

readln(m,n);

if m>=n do writeln('sai')

else

begin

for i:=m to n do

if i mod 3=0 then s:=s+i;

writeln(s);

end;

end.

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

uses crt;

var m,n,i,s:longint;

begin

clrscr;

readln(m,n);

if m>=n do writeln('sai')

else

begin

for i:=n downto m do

if i mod 3=0 then s:=s+i;

writeln(s);

end;

end.

Câu hỏi trong lớp Xem thêm

giup e voi I/ Supply the correct form of the verbs in brackets 1. You (think) ……………………… collecting stamps costs much money? 2. Every year, my mother (give) ……………………… me a nice doll on my birthday. 3. Jenny says she loves collecting pens but she (not/continue) ……………………… this hobby from next year. 4. If you wash your hands more, you (have)……………………. less chance of catching flu. 5. Getting plenty of rest is very good. It (help)…………………. you to avoid depression. 6. Mr. John (be) ……………………… principal of our school since last year. 7. I (see) ……………………… a car accident on this corner yesterday. 8. We like (come)……………………to school by bus, but we hate (stand)………………………. and (wait) …………………… in the rain. 9. ……………………… (you/ ever/ meet) anyone famous? 10. My mother (come) ……………………… to stay with us next weekend. 11. When he lived in Manchester, he (work) ……………………… in a bank. 12. We (be) ……………………… students for four years. 13. We are planting trees around our school now. Our school (be) ……………………… surrounded by a lot of green trees. 14. What ……………………… your father usually ……………………… (do) in the evenings? 15. My sister likes (cook) ……………………… very much. She can cook many good foods. 16. My father says when he's retired, he (go) …………………… back to his village to do the gardening. 17. They want (buy) ……………………… some meat for dinner. 18. Linh is my best friend. We (know) ……………………… each other for 5 years. 19. I enjoy (fish) ……………………… because it is relaxing. 20. How about (go) ……………………… to the movie theatre?

3 lượt xem
1 đáp án
17 giờ trước