JAVA学习(三)

package test.com;

import java.util.Scanner;

public class Test {


    public static void main(String[] args) {
        int nextValue;
        int sum = 0;
        Scanner kbInput = new Scanner(System.in);
        
        kbInput.useDelimiter("\\s");
        while(kbInput.hasNextInt()){
        
        nextValue = kbInput.nextInt();
        sum += nextValue;
    }
    System.out.println("Sum=" + sum);
    kbInput.close();
    }}

我们期末要做的课题是 “考核系统界面”。

posted on 2016-03-28 11:08  Conquer丶  阅读(103)  评论(0编辑  收藏  举报

导航