博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SRM 582 Div II Level One: SemiPerfectSquare
阅读量:5307 次
发布时间:2019-06-14

本文共 417 字,大约阅读时间需要 1 分钟。

题目来源:

比较简单,代码如下:

 

#include 
#include
#include
using namespace std;class SemiPerfectSquare{public: string check(int N);};string SemiPerfectSquare::check(int N){ int sq = (int)sqrt((double)N); for (int i = 0; i <= sq; i++) { for (int j = 0; j < i; j++) { if (j * i * i == N) { return "Yes"; } } } return "No";}

 

 

转载于:https://www.cnblogs.com/snake-hand/p/3151209.html

你可能感兴趣的文章
JS 去字符串空格 总结
查看>>
Win7和Ubuntu下mysql 安装配置
查看>>
HDOJ 3899 JLUCPC
查看>>
软件需求分析--结构化分析(SA)方法
查看>>
SpringBoot Aop打印参数
查看>>
react 事件绑定
查看>>
基本的文件输入输出操作Tips
查看>>
十 字符串处理
查看>>
贪吃蛇
查看>>
数组的冒泡排序及拷贝
查看>>
python-mysql基本用法
查看>>
托管DLL和非托管DLL的区别
查看>>
02-django查询
查看>>
<raspberry pi> raspberry pi 设置wlan 静态ip
查看>>
Django之分页
查看>>
转载 IE的documentMode属性
查看>>
Qt对象树
查看>>
NoSQL一些基础
查看>>
SQLSERVER复制数据库某一个表到另一个数据库中(可跨服务器)
查看>>
织梦CMS建站入门学习(二)
查看>>