如何使用java实现,输入一个数字然后空格 再输入一个数字,最后回车键,得到两个数字的和?

 我来答
雪飞潇潇
2013-12-17 · TA获得超过6273个赞
知道大有可为答主
回答量:1968
采纳率:91%
帮助的人:853万
展开全部

普通版:可输入,可输出。带详细的注释

import java.util.Scanner;

public class SumDemo {
public static void main(String[] args) {
System.out.println("请输入两个数字,中间用空格隔开,例如5 5");
//得到一个扫描器,用来扫描 系统的输入
Scanner input = new Scanner(System.in);
//申明一个临时的字符串变量temp,用来保存 扫描器读取的一行;
String temp = input.nextLine();
//temp字符串首先trim()一下,就是去掉两边的空白,
//因为有的人可能输入的是 空格5空格5空格回车。.
//所以去掉两边的空格变成 5空格5回车 就符合要求了
//split(" ")方法表示,用空格去切割字符串,返回的结果是一个字符串数组
String[] ss = temp.trim().split(" ");
//从两个字符串中解析得到两个数字,并求和
int num1 = Integer.parseInt(ss[0]);
int num2 = Integer.parseInt(ss[1]);
int sum = num1+num2;
//输出结果
System.out.println("输入的数字是"+num1+" "+num2+"两数的和是:"+sum);
//养成良好的习惯,打开了的资源要记得关闭,我们打开了扫描器,就要关闭扫描器
input.close();
}
}

效果

升级版:可重复输入数字,重复输出结果,并带退出功能

import java.util.Scanner;

public class SumTest {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
while(true){
System.out.println("如果输入exit,那么退出。输入两个数字,用空格隔开");
String temp = input.nextLine();
if(temp.trim().equals("exit")){
break;
}
String[] ss = temp.trim().split(" ");
int num1 = Integer.parseInt(ss[0]);
int num2 = Integer.parseInt(ss[1]);
int sum = num1+num2;
System.out.println("输入的数字是"+num1+" "+num2+"两数的和是:"+sum);
}
input.close();
}

}

效果

老冯言井故事
2013-12-17 · TA获得超过416个赞
知道小有建树答主
回答量:252
采纳率:100%
帮助的人:259万
展开全部
        Scanner s = new Scanner(System.in);
        while(true){
    String input = s.nextLine();
    if(input.split(" ").length == 2){
             try {
         System.out.println("两数的和为:" + 
         (Integer.parseInt(input.split(" ")[0]) + 
         Integer.parseInt(input.split(" ")[1])));
             } catch (NumberFormatException e) {
         System.out.println("请输入数字!");
             }
    }
        }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
飞雪A1A2
2013-12-17 · TA获得超过213个赞
知道小有建树答主
回答量:191
采纳率:0%
帮助的人:155万
展开全部
//应该可以的 你去试试吧 

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class SumInt {
public static void main(String[] args) {
System.out.println("请输入两个数字,用空格分隔");
String a = Input.getString();
String[] aa = a.split(" ");
String[] aaa = new String[aa.length];
for (int j = 0; j < aa.length; j++) {
aaa[j] = aa[j];
}
sum(aaa);
}

private static void sum(String[] a) {
int sum = 0;
for (int i = 0; i < a.length; i++) {
sum += Integer.parseInt(a[i]);
}
System.out.println("两数之和:" + sum);
}
}

class In {
public static int getInt() {
BufferedReader dis = new BufferedReader(
new InputStreamReader(System.in));
int value = 0;
try {
String str = dis.readLine();
value = Integer.parseInt(str);

} catch (IOException e) {
e.printStackTrace();
}
return value;
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
353003874
2013-12-17 · 超过12用户采纳过TA的回答
知道答主
回答量:77
采纳率:0%
帮助的人:35.6万
展开全部
输入,然后用正则表达式切割,然后得到一个数组,求两数之和就可以了,这么简单地问题,多想想就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式