#7553: 我用別的網頁編譯都正常執行都可,為何會出現NA


billaz123 (billaz123)

學校 : 國立高雄師範大學
編號 : 29193
來源 : [180.176.76.29]
最後登入時間 :
2020-12-19 23:17:52
a002. 簡易加法 | From: [61.227.19.141] | 發表日期 : 2013-03-10 12:17

import java.util.Scanner;
class test{
public static void main(String args[]){
    
Scanner Scanner = new Scanner(System.in);
int a,b,c,d,e,f;
        
a=Scanner.nextInt();
b=Scanner.nextInt();
d=Scanner.nextInt();
e=Scanner.nextInt();
c=a+b;
f=d+e;
System.out.printf("%d",c);
System.out.println("");
System.out.printf("%d",f);
}
}
-------------------------------------
我用命令提示字元或者線上的編譯器都可以正常執行,會和這邊還是出現NA 
 
#7559: Re:我用別的網頁編譯都正常執行都可,為何會出現NA


tomoyaken14 (歐練)

學校 : 不指定學校
編號 : 6922
來源 : [122.117.127.202]
最後登入時間 :
2024-04-15 14:31:55
a002. 簡易加法 | From: [140.117.70.91] | 發表日期 : 2013-03-11 16:10

import java.util.Scanner;
class test{
public static void main(String args[]){
    
Scanner Scanner = new Scanner(System.in);
int a,b,c,d,e,f;
        
a=Scanner.nextInt();
b=Scanner.nextInt();
d=Scanner.nextInt();
e=Scanner.nextInt();
c=a+b;
f=d+e;
System.out.printf("%d",c);
System.out.println("");
System.out.printf("%d",f);
}
}
-------------------------------------
我用命令提示字元或者線上的編譯器都可以正常執行,會和這邊還是出現NA 


輸入不只有兩筆...請用while

Scanner Scanner <建議第二個Scanner 的S改成小寫s,你這樣寫會非常非常非常非常的危險

 
ZeroJudge Forum