Run ID:135704
提交时间:2025-11-08 11:42:05
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,a,b,c,d; cin>>n; for(a=2;a<=n;a++){ for(b=2;b<a;b++){ for(c=b;c<a;c++){ for(d=c;d<a;d++){ if(a*a*a==b*b*b+c*c*c+d*d*d&&d<a){ cout<<"Cube = "<<a<<", Triple = ("<<b<<','<<c<<','<<d<<')'<<endl; } } } } } return 0; }