第七题
#include<iostream>
using namespace std;
int main()
{
int x, y, z;
for( x = 1; x < 10; x++ ) {
y = 20 - 2 * x;
z = 30 - y - x;
if( 3 * x + 2 * y + z == 50 ) cout << "x=" << x << "\ty=" << y << "\tz=" << z << endl;
}
return 0;
}
#include<iostream>
using namespace std;
int main()
{
int x, y, z;
for( x = 1; x < 10; x++ ) {
y = 20 - 2 * x;
z = 30 - y - x;
if( 3 * x + 2 * y + z == 50 ) cout << "x=" << x << "\ty=" << y << "\tz=" << z << endl;
}
return 0;
}