不行?
2024-05-25 13:32:34
发布于:广东
6阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
std::ios::sync_with_stdio(false);
int x,y,cnt=0;
cin>>x>>y;
for(int i=x;i<=y;i++)
{
for(int j=1;j<=i;j++)
{
for(int o=1;o<=j;o++)
{
if(i==j*j-o*o)
{
cnt++;
}
}
}
}
cout<<cnt;
}
这里空空如也
有帮助,赞一个