59.已知xxz+yzz=532,求所有可能的x,y,z的值

#include<iostream>
using namespace std;

int main()
{
    for(int x=0;x<10;x++)
    {
        for(int y=0;y<10;y++)
        {
            for(int z=0;z<10;z++)
            {
                if((110*x+100*y+12*z)==532)
                {
                    cout<<"x="<<x<<" ";
                    cout<<"y="<<y<<" ";
                    cout<<"z="<<z<<" ";
                    cout<<endl;
                }
            }
        }
    }
    return 0;
}
原文地址:https://www.cnblogs.com/jixiaowu/p/3905504.html