You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
903 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
/**
*
8:1,2,4,8
9:1,3,9
18,24
1933
* @return
*/
int main(){
long long n;cin>>n;
for(int i=1;i*i<=n;i++)//i是中间数我不用sqrt是为了少写个文件头
cout<<i*i<<" ";//输出的全是完全平方数
}