少爷的题解最优雅
2024-01-17 20:55:38
发布于:广东
4阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin>>n;
for(int a=1;a<=n;++a)
for(int b=2;b<a;++b)
for(int c=b;c<a;++c)
for(int d=c;d<a;++d)
if(pow(a,3) == pow(b,3) + pow(c,3) +pow(d,3))
cout<<"Cube = "<<a<<", Triple = ("<<b<<","<<c<<","<<d<<")"<<endl;
return 0;
}
这里空空如也
有帮助,赞一个