作业三

Posted 牧云丶枫月

tags:

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

import java.util.Scanner;


public class TestScanner {

/**
* @param args
*/
public static void main(String[] args){
//TOOD Auto-generated method stub
/*int nextValue;
Scanner kpInput = new Scanner(System.in);
nextValue = kpInput.nextInt();
System.out.println("读取:" + nextValue);
kpInput.close();
从键盘读取若干整数并读取输出*/

int nextValue, sum = 0;
Scanner kpInput = new Scanner(System.in);
while(kpInput.hasNextInt()){
nextValue = kpInput.nextInt();
sum += nextValue;
System.out.println(nextValue);
}
kpInput.close();
System.out.println("Sum: " + sum);
}

}

技术分享 

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

作业三

作业三

140201129-贾杰峰-作业三

作业三

信号与系统2022春季作业-第十三次次作业

作业三