#7793: (Java) WA為什麼~~~ 幫幫我


smllai (Jane)

學校 : 元智大學
編號 : 6704
來源 : [66.249.82.231]
最後登入時間 :
2015-12-01 22:01:45
a007. 判斷質數 | From: [118.163.125.252] | 發表日期 : 2013-05-28 11:56

import java.util.Scanner;

public class a007 {
    public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();

for (int i = 2;i<=Math.sqrt(a) ;i++ )
{
while(a%i==0)
{
System.out.println("非質數");
System.exit(0);
}

}
System.out.println("質數");

}
}
 
 
程式沒有逾時,在本機跑也都很正常,麻煩大大 謝謝 
 
ZeroJudge Forum