大学JAVA考试的一道简单的题目 求答案

WriteaJavaprogram(nameitIO.java)todothefollowingtasks:1)Promptstheusertoinputtwointeg... Write a Java program(name it IO.java) to do the following tasks:
1) Prompts the user to input two integers.
2) Create a text file named "sum.txt" at the current dictionary.
3) Compute and write the sum of the two integers in the "sum.txt" file.
What is the output of the following program?程序的输出是什么
public class Test {
public static void main(String[] args) {
int a = 11; int b = 8;
int temp = b; b = a; a = temp;
System.out.println( a );
System.out.println( b );
}
}
最后一题了 求答案 a=? b=?
展开
 我来答
manwu91
2015-03-15 · TA获得超过486个赞
知道小有建树答主
回答量:385
采纳率:71%
帮助的人:286万
展开全部
public class IO {

public static void main(String[] args) throws Exception {
Scanner scn = new Scanner(System.in);
System.out.println("please input to integers: ");
int result = scn.nextInt() + scn.nextInt();
new FileOutputStream("sum.txt").write(String.valueOf(result).getBytes());

}

}
更多追问追答
追问
请问能用eclipse调试过成功了吗 我考试用eclipse这个软件的
追答
肯定能啊,放心吧
qww2005
2015-03-15
知道答主
回答量:34
采纳率:0%
帮助的人:8.8万
展开全部
io流
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式