Những câu hỏi liên quan
SX
Xem chi tiết
KL
13 tháng 5 2023 lúc 8:57

Var i,n:integer;

Begin

Write('n = ');readln(n);

Write('Day so tu 1 den ',n,' la ');

For i:=1 to n do write(i:8);

Readln

End.

Bình luận (0)
VC
Xem chi tiết
KL
23 tháng 5 2023 lúc 6:18

Var a,b,ta,tb,r,ucln:integer;

Begin

Write('a = ');readln(a);

Write('b = ');readln(b);

ta:=a;

tb:=b;

While tb <> 0 do

Begin

r:=ta mod tb;

ta:=tb;

tb:=r;

End;

ucln:=ta;

Write('UCLN(',a,' ',b,') = ',ucln);

Readln

End.

Bình luận (0)
NC
Xem chi tiết
PG
7 tháng 4 2023 lúc 21:03

program tong_so;

var

     tong, so: integer;

begin

     tong := 0;

     while tong < 20 do

     begin

          write('Nhập số nguyên: ');

          readln(so);

          tong := tong + so;

     end;

     writeln('Tổng các số đã nhập là: ', tong);

end.

Bình luận (0)
NC
Xem chi tiết
ML
6 tháng 4 2023 lúc 22:40

Program HOC24;

var a,b: integer;

begin

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

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

 

if a> b then write(a);

if a<b then write(b);

if a=b then write('2 so bang nhau');

readln

end.

Bình luận (0)
NC
Xem chi tiết
KL
7 tháng 4 2023 lúc 7:19

Var a,b:real;

Begin

Write('a = ');readln(a);

Write('b = ');readln(b);

If a > b then write('So lon la ',a:10:2)

Else if b > a then write('So lon la ',b:10:2)

Else write('Hai so bang nhau');

Readln;

End.

Bình luận (2)
VC
Xem chi tiết
LL
22 tháng 5 2023 lúc 12:22

Program solonhon;

var a,b: integer;

begin

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

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

if a> b then write(a);

if a<b then write(b);

if a=b then write('2 so bang nhau');

readln

end.

Bình luận (0)
ML
22 tháng 5 2023 lúc 12:25

Program HOC24;

var a,b: integer;

begin

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

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

if a>b then write(a) else write(b);

readln

end.

Bình luận (2)
NT
22 tháng 5 2023 lúc 12:23

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

if a>b then write(a)

else write(b);

readln;

end.

Bình luận (0)
DN
Xem chi tiết
NH
20 tháng 3 2022 lúc 7:34

uses crt;
var s,x,i:byte;
n: string;
begin clrscr;
s:=0;
write('Nhap n: ');readln(n);
for i:=1 to length(n) do begin
val(n[i],x); inc(s,x); end;
write('Tong cac chu so cua so do la: ',s);
readln
end.

Bình luận (0)
KH
Xem chi tiết
AP
22 tháng 10 2021 lúc 21:57

uses crt;

var n,i:integer;

begin

readln(n);

for i:=2 to n do

if (n mod i=0) then

begin

write(i);

readln;

exit;

end;

end.

Bình luận (0)
HD
Xem chi tiết
NN
4 tháng 1 2022 lúc 11:48

1B

2D

Bình luận (1)