第三次作业

Posted

tags:

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

import java.util.Scanner;

public class Practice {

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);

}

}
技术分享

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

第三次寒假作业

第三次作业

第三次作业

第三次作业

第三次作业

第三次作业