1. Viết chương trình tính tổng các số từ 1 đến 100 2.Viết chương trình tính tổng các số từ 1 đến n 3.Viết chương trình tính tổng các số từ m đến n

2 câu trả lời

1

Program Hotboy

Uses crt; 

Var s,i,n : longint;

Begin

Clrscr;

Write(‘Nhap n: ‘); Readln(n); 

s:=0; i:=1;

 While i<=n do

  Begin

  s:=s+i; i:=i+1;

End; 

Writeln(‘tong tu 1 den n la’,S);

Readln

End.

2

uses crt;
var n,i,t:longint;
begin
clrscr;
write('n='); readln(n);
t:=0;
for i:=1 to n do
t:=t+i;
writeln('tong cua cac so tu 1 den ',n,' la: ',t);
readln;
end.

3

uses crt;

var i,m,n,t:integer;

begin

clrscr;

repeat

write('Nhap m='); readln(m);

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

until (0<=m) and (0<=n) and (m<n);

t:=0;

for i:=m to n do 

  t:=t+i;

writeln('Tong cac so tu nhien trong khoang tu ',m,' toi ',n,' la: ',t);

readln;

end.

Câu 1:

program tu_1den_100;

uses crt;

var x,dem:integer;

begin

clrscr;

while (dem<=100) do 

begin

x:=x+dem;

dem:= dem+1;

end;

write('Tong cua so la= ');

readln;

end.

Câu 2:

Program TinhTong;

Uses crt;

Var S,i,n:Integer;

BEGIN

Write( ‘ Nhap so n:’ ); Readln( n );

S: = 0;

For i:=1 to n do

S:=S + i;

Writeln( ‘Tong = ’, S);

Readln;

END.

Câu hỏi trong lớp Xem thêm
3 lượt xem
2 đáp án
8 giờ trước

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
1 ngày trước