13
6
Hãy luôn nhớ cảm ơn và vote 5*
nếu câu trả lời hữu ích nhé!
2863
21141
program lon_hon5;
uses crt;
var A:array[1..10] of integer;
i:byte;
begin
clrscr;
for i:=1 to 10 do
begin
write('Nhap so thu ',i,': '); readln(A[i]);
end;
for i:=1 to 10 do
if A[i]>5 then write(A[i],' ');
readln;
end.
Hãy giúp mọi người biết câu trả lời này thế nào?
583
564
var a: array[1..10] of integer;
i: byte;
Begin
For i:=1 to 10 do
Begin
Write('a[', i, '] = '); readln(a[i]);
End;
For i:=1 to 10 do
If a[i]>5 then write(a[i], ' ');
Readln
End.
Hãy giúp mọi người biết câu trả lời này thế nào?
Bảng tin
13
650
6
thank you nha mk lm được r