#6618: 用eclipse跑可以,但這顯示RE


d1288999 (David@@)

學校 : 不指定學校
編號 : 25423
來源 : [61.60.106.4, 61.60.106.4]
最後登入時間 :
2013-01-03 14:31:39
a007. 判斷質數 | From: [111.250.214.158] | 發表日期 : 2012-05-12 15:21

import java.util.Scanner;
public class JAVA{

public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int a;
while(scan.hasNextInt()){
a=scan.nextInt();
int b=0;
for(int i=2;i<a;i++){
   if(a%i==0){b=1;break;}
}
if(b==0){System.out.println("質數");}
else{System.out.println("非質數");}

}
}
}

 
ZeroJudge Forum