我刚开始在 iTunes 上参加斯坦福 CS106a 课程,但我遇到了 Eclipse 的问题。这是我的代码:
/*
* File: Add2Integers.java
* -----------------------
* A simple ConsoleProgram to add two integers
* and display their total.
*/
import acm.program.*;
public class Add2Integers extends ConsoleProgram {
public void run() {
/* So all y'all in the back can see! */
setFont("DejaVuSerif-BOLD-24");
println("This program adds two numbers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}
}
当我尝试运行它时,我收到该部分不包含小程序的消息。我认为这与import acm.program
.
我下载了 acm 工具包并尝试将program.java
文件添加到我的根文件夹,构建路径,对整个 acm 文件夹执行相同操作,但没有任何效果。
我只需要帮助启动并运行这个简单的程序,这样我就可以开始学习了。
我正在运行 OSX 10.8。