您的位置:首页 > 编程语言 > Java开发

java console program demo quote from Stanford cs106a, "the art and science of java"

2015-06-11 10:52 513 查看
/*
* File: Add2Integers.java
* -----------------------
* This program adds two integers and prints their sum.
*/

import acm.program.*;

public class Add2Integers extends ConsoleProgram {
public void run() {
println("This program adds two integers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: