第三次作业

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三次作业相关的知识,希望对你有一定的参考价值。

import java.util.Scanner;

public class Main {
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);
    System.out.printf("Sum:%d",sum);
    kbInput.close();                //关闭流对象
}
}

 运行结果

4 4 4 4

sum 16

以上是关于第三次作业的主要内容,如果未能解决你的问题,请参考以下文章

第三次寒假作业

第三次作业

第三次作业

第三次作业

第三次作业

第三次作业