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