许涛 发表于 2012-5-16 21:56
循环嵌套~
楼上的输出有点问题啊~
输出的是:
x=0,y=0,z=0
x=0,y=0,z=1
x=1,y=5,z=3
x=3,y=7,z=0
x=3,y=7,z=1
x=4,y=0,z=7
这个很明显还有点小问题- public class Shuzu
- {
- public static void main(String[] args) {
- for (int x = 0; x < 10; x++) {
- for (int y = 0; y < 10; y++) {
- for (int z = 0; z < 10; z++) {
- if ((z + 10 * y + x * 100 == x * x * x + y * y * y + z * z
- * z)
- && (x != 0))
- System.out.println(x + "" + y + "" + z);
- }
- }
- }
- }
- }
复制代码 这样输出就木有问题了~ |