مصطفی said:
باسلام متن سوال The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line. است که با فاصله از هم جدا شده اند یک جفت اعداد صحیح هر خطa,bورودی شامل یک جفت از عددهای صحیح این سوال شر ط خاتمه ندارد یعنی نگفته تا کی این جفت اعداد رابگیرد لطفا کمک کنید باتشکر از سایت خوبتان
You have to read the input until EOF
.
Look at the sample codes here: http://sharecode.ir/discussion/problemset/topic/175
آقا مشکل کجاست همش کامپایلیشن ارور میده ... ؟ public class One {
public static void main(String [] args)
{
Scanner in = new Scanner (System.in);
while(in.hasNext())
System.out.println(in.nextInt()+in.nextInt());
}
}
متوجه نیستم
Siroos Fazeli said:
آقا مشکل کجاست همش کامپایلیشن ارور میده ... ؟ public class One {
public static void main(String [] args) { Scanner in = new Scanner (System.in); while(in.hasNext()) System.out.println(in.nextInt()+in.nextInt()); }
}
متوجه نیستم
As you know now, you should have exactly one public class named main
:)
BTW you can see what is the compilation error by clicking on the compilation error
on the runs' page.
In order to post something you must login first. You can use the form in the top of this page.