0
0
Hãy luôn nhớ cảm ơn và vote 5*
nếu câu trả lời hữu ích nhé!
6067
5259
var i,n,test : integer;
f1,f2 : text;
function kt(x : integer) : boolean;
var i : integer;
begin
i:=trunc(sqrt(x));
if sqr(i) = x then kt:=true else kt:=false;
end;
begin
assign(f1,'Sole.inp'); reset(f1);
assign(f2,'Kq.out'); rewrite(f2);
read(f1,n);
test:=0;
for i:=1 to n do if kt(i) = true then writeln(f2,i);
close(f1); close(f2);
readln; end.
Hãy giúp mọi người biết câu trả lời này thế nào?
2376
1804
uses crt;
var i,n:longint; f1,f2:text;
begin
clrscr;
assign(f1,'sochinhphuong.inp.pas');reset(f1);
readln(f1,n);
close(f1);
assign(f2,'sochinhphuong.out');rewrite(f2);
for i:=1 to n do if sqrt(i)=trunc(sqrt(i)) then write(f2,i,' ');
close(f2);
end.
Hãy giúp mọi người biết câu trả lời này thế nào?
2376
1804
Xin hay nhất ạ
Cả 2 bài đều đúng ạ?
Bảng tin