华师一附中OI组

标题: 完全平方数的判断 [打印本页]

作者: admin    时间: 2018-6-28 19:40
标题: 完全平方数的判断
输入一个正整数,判断他是否完全平方数,比如1,4,9等是完全平方数但是2,5,6,7,8就不是。
作者: 郑子川    时间: 2018-7-14 10:19
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;
  4. int x;
  5. float sqrtx;
  6. int main()
  7. {
  8.     cin>>x;
  9.     sqrtx=sqrt(x);
  10.     if (sqrtx==int(sqrtx)) cout<<"Yes";
  11.     else cout<<"No";
  12.     return 0;
  13. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2