我正在尝试在 Eclipse 中编写一个 java 应用程序。
我真的很想使用 ACM.Program 包,但是,我的 Eclipse 副本没有安装它!
我查看了整个网络,但找不到 ACM 包的单个下载。
更多信息:每当我尝试代码时:
package helloGeiodo;
import acm.program.*;
public class Add2 extends Program {
public void run() {
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 + ".");
}
}
我在 ying-yang 上下都有错误,都暗示没有“acm.program”这样的东西。
无论如何,我需要知道在哪里可以找到 ACM 包,以及如何安装它。
谢谢!
——弗林