已知 XYZ+YZZ=532,其中,X、Y、Z 为数字,编程求出 X、Y 和 Z 的值。一层循环解决

public class BegXYZ {
public static void main(String[] args) {
Random rand = new Random();
while(true) {
int X = rand.nextInt(10);
int Y = rand.nextInt(10);
int Z = rand.nextInt(10);
int sum=X100+Y10+Z;
int sume = Y100+Z10+Z;
if(sum+sume==532) {
System.out.println(sum+"+"+sume+"="+532);
break;
}
}
}
}

你可能感兴趣的:(java)