我是一名新手 Java 程序员。我不知道主要方法有什么问题,它一直指向我这一行
int x = Integer.parseInt(args[0]);
这是我的代码
public static void main(String[] args) {
assert args.length == 1;
int x = Integer.parseInt(args[0]);
while (x != 1) {
x = nextInt(x);
System.out.print(" " + x);
}
}
public static int nextInt(int x) {
if (x % 2 == 0) {
return x / 2;
} else
return 3 * x + 1;
}