标签:style blog color os io for div log
#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; }
59.已知xxz+yzz=532,求所有可能的x,y,z的值,布布扣,bubuko.com
59.已知xxz+yzz=532,求所有可能的x,y,z的值
标签:style blog color os io for div log
原文地址:http://www.cnblogs.com/jixiaowu/p/3905504.html