#5237: 是否有什麼特殊標準呢?


kevinchin (Kevin)

學校 : 國立臺中技術學院
編號 : 19273
來源 : [211.22.29.43]
最後登入時間 :
2020-01-21 14:53:42
a002. 簡易加法 | From: [122.117.25.193] | 發表日期 : 2011-06-25 23:15

import java.util.Scanner;
public class a002
{
   public static void main(String args[])
    {
     int x,y;

     Scanner input=new Scanner(System.in);
     while(input.hasNext())
      {
          x=input.nextInt();
         y=input.nextInt();
         System.out.println(x+y);
      }
   
   }
}

不知道為什麼 無論如何就是不過

會不會是因為縮排? 變數名稱? 檔名?

不知問題在哪

 
#5239: Re:是否有什麼特殊標準呢?


popular10347 (ICPC// 哪時能唸到高等演算法T^T)

學校 : 元智大學
編號 : 11351
來源 : [1.169.118.99]
最後登入時間 :
2012-10-29 00:22:54
a002. 簡易加法 | From: [114.43.73.114] | 發表日期 : 2011-06-26 00:44

import java.util.Scanner;
public class a002
{
   public static void main(String args[])
    {
     int x,y;

     Scanner input=new Scanner(System.in);
     while(input.hasNext())
      {
          x=input.nextInt();
         y=input.nextInt();
         System.out.println(x+y);
      }
   
   }
}

不知道為什麼 無論如何就是不過

會不會是因為縮排? 變數名稱? 檔名?

不知問題在哪


一樣的問題

用while還讀兩個數字

如C++:

            int a,b;

            while(cin >> a >> b)

                      cout << a+b << endl;

 

 
#5241: Re:是否有什麼特殊標準呢?


nolonger (Nolonger)

學校 : 臺南市私立瀛海高級中學
編號 : 5267
來源 : [118.163.88.50]
最後登入時間 :
2015-06-12 18:46:56
a002. 簡易加法 | From: [111.243.5.170] | 發表日期 : 2011-06-26 11:20

import java.util.Scanner;
public class a002
{
   public static void main(String args[])
    {
     int x,y;

     Scanner input=new Scanner(System.in);
     while(input.hasNext())
      {
          x=input.nextInt();
         y=input.nextInt();
         System.out.println(x+y);
      }
   
   }
}

不知道為什麼 無論如何就是不過

會不會是因為縮排? 變數名稱? 檔名?

不知問題在哪

 剛剛實測了一下

 

public class a002 {  //這樣會過

 

public class a002

{ //這樣會CE

 

就你把public class後面那個大括號縮排到同一行編譯就會過了

 

我也不知道為什麼orz 

 
ZeroJudge Forum