多谢各位高手的指点~
尤其感谢版主大人和lecco达人
问题已经解决了
原来是应嵌入while的问题..我想复杂了
import java.util.Scanner;
public class Acm1002test {
public static void main(String[]args){
Scanner stdin = new Scanner(System.in);
while (stdin.hasNext()) {
long a=stdin.nextLong();
long b=stdin.nextLong();
long c=stdin.nextLong();
System.out.println(a+b+c);
}
}
}
这样就通过了~
尤其感谢版主大人和lecco达人
问题已经解决了
原来是应嵌入while的问题..我想复杂了
import java.util.Scanner;
public class Acm1002test {
public static void main(String[]args){
Scanner stdin = new Scanner(System.in);
while (stdin.hasNext()) {
long a=stdin.nextLong();
long b=stdin.nextLong();
long c=stdin.nextLong();
System.out.println(a+b+c);
}
}
}
这样就通过了~