华师一附中OI组
标题:
完全平方数的判断
[打印本页]
作者:
admin
时间:
2018-6-28 19:40
标题:
完全平方数的判断
输入一个正整数,判断他是否完全平方数,比如1,4,9等是完全平方数但是2,5,6,7,8就不是。
作者:
郑子川
时间:
2018-7-14 10:19
#include<iostream>
#include<cmath>
using namespace std;
int x;
float sqrtx;
int main()
{
cin>>x;
sqrtx=sqrt(x);
if (sqrtx==int(sqrtx)) cout<<"Yes";
else cout<<"No";
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2