这是我的自学作业问题之一。
我应该写下这个程序的输出而不实际运行它。我了解这里的所有语法和变量传递,(并且我有答案)但由于某种原因,在纸上追踪它是行不通的。
有什么秘密的图表技术可以让一切井井有条吗?
对于有经验的程序员来说,手工解决这个问题只是儿戏吗?
谢谢
public class Mystery extends ConsoleProgram {
public void run() {
ghost(13);
}
private void ghost(int x) {
int y = 0;
for (int i = 1; i < x; i *= 2) {
y = witch(y, skeleton(x, i));
}
println("ghost: x = " + x + ", y = " + y);
}
private int witch(int x, int y) {
x = 10 * x + y;
println("witch: x = " + x + ", y = " + y);
return x;
}
private int skeleton(int x, int y) {
return x / y % 2;
}
}