欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

四平方和

程序员文章站 2022-06-02 21:26:42
...

四平方和

四平方和
四平方和

#include <iostream>
#include <string>
#include<bits/stdc++.h>
#define MAX 0x7fffffff
using namespace std;
int main()
{
    int n;
    cin>>n;
    int a,b,c,d;
    for(a=0; a<=2300; a++)
    {
        for(b=0; b<=2300; b++)
        {
            for(c=0; c<=2300; c++)
            {
                d=sqrt(n-a*a-b*b-c*c);

                if(a*a+b*b+c*c+d*d==n)
                {
                    cout<<a<<' '<<b<<' '<<c<<' '<<d;
                    return 0;
                }

            }
        }
    }

}
相关标签: 枚举