码迷,mamicode.com
首页 > 编程语言 > 详细

Java第三次作业

时间:2016-03-28 18:35:59      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.Scanner;


public class TestScanner {
    public static void main(String[] args) {
         int nextValue;
         int sum = 0;
         Scanner kbIntput = new Scanner(System.in);
        kbIntput.useDelimiter("\\s");//设置分隔符
        while(kbIntput.hasNextInt())
         {
            nextValue = kbIntput.nextInt();
            sum+=nextValue;
         }
        kbIntput.close();
        System.out.println("Sum:"+sum);
    }
}

技术分享

Java第三次作业

标签:

原文地址:http://www.cnblogs.com/Mrsli/p/5329739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!