Tìm các số chính phương nhỏ hơn n

2 câu trả lời

Program Taylor;
Uses crt;
var n,i:longint;
Begin
clrscr;
write('n=');readln(n);
writeln('Cac so chinh phuong tu 0 den ',n,': ');
For i:=1 to n-1 do
If sqrt(i)=trunc(sqrt(i)) then writeln(i);
Readln
End.

#include<stdio.h>

#include<conio .h>

#include<math.h >

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