加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.cpp 858 Bytes
一键复制 编辑 原始数据 按行查看 历史
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <vector>
#include<cmath>
using namespace std;
vector<int> get_divisors(int x)//分解因数
{
vector<int> res;
for (int i = 1; i <= x / i; i++)
if (x % i == 0)
{
res.push_back(i);
if (i != x / i) res.push_back(x / i);
}
sort(res.begin(), res.end());
return res;
}
int isPerfectSquare(int num)//判断完全平方数
{
int z = sqrt(num);
if (z * z == num) return 1;
else return 0;
}
int main()
{
int n;
int m = 0;
cin >> n;
for (int x = 1; x <= n; x++)
{
vector<int> res = get_divisors(x);
for (int i=0;i<res.size();i++)
{
if (isPerfectSquare(res[i]))
{
m++;
}
}
}
cout << m;
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化