Java ACM package(Java ACM 包)
问题描述
我正在尝试在 Eclipse 中编写一个 java 应用程序.
I'm trying to write a java application in Eclipse.
我真的很想使用 ACM.Program 包,但是,我的 Eclipse 副本没有安装它!
I'm really wanting to use the ACM.Program package, however, my copy of Eclipse doesn't have it installed!
我在网上找遍了,我找不到 ACM 包的单个下载.
I've looked all over the net, and I can't find a single download for the ACM package.
更多信息:每当我尝试代码时:
More info: Whenever I try the code:
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"这样的东西.
I get errors up and down the ying-yang, all implying that there is no such thing as "acm.program".
无论如何,我需要知道在哪里可以找到 ACM 包,以及如何安装它.
Anyways, I need to know where to find the ACM package, and, how to install it.
谢谢!
--弗林
推荐答案
您可以从 acm.jar"nofollow">ACM Java 工作组 然后 将它添加到你的类路径.
You can download acm.jar from the ACM Java Task Force and then add it to your classpath.
看来之前的链接已经失效了.这些文件仍然可以在 Eric Roberts 的斯坦福页面上找到.
It appears that the previous link is dead. The files are still available at Eric Roberts' Stanford page.
这篇关于Java ACM 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java ACM 包
基础教程推荐
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
