java第三次作业
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java第三次作业相关的知识,希望对你有一定的参考价值。
import java.util.Scanner;
public class testscanner {
/**
* @parm args
*/
public static void main(String[] args) {
int nextValue;
int sum = 0;
Scanner sr = new Scanner(System.in);
sr.useDelimiter("\\s");
while(sr.hasNext()){
nextValue = sr.nextInt();
sum += nextValue;
}
System.out.println("Sum: "+ sum);
sr.close();
}
}
public class testscanner {
/**
* @parm args
*/
public static void main(String[] args) {
int nextValue;
int sum = 0;
Scanner sr = new Scanner(System.in);
sr.useDelimiter("\\s");
while(sr.hasNext()){
nextValue = sr.nextInt();
sum += nextValue;
}
System.out.println("Sum: "+ sum);
sr.close();
}
}
以上是关于java第三次作业的主要内容,如果未能解决你的问题,请参考以下文章