#6647: RE:時間一直愈時 請大大為我解惑


wl01482665 (阿甘)

學校 : 樹德科技大學
編號 : 25755
來源 : [61.227.200.150]
最後登入時間 :
2016-05-28 23:27:52
a007. 判斷質數 | From: [120.119.35.46] | 發表日期 : 2012-05-21 22:32

import java.util.Scanner;

public class lol{
public static void main(String [] argv){

Scanner abc = new Scanner(System.in);

while(abc.hasNext()){
int a = abc.nextInt();
for(int b = 2;b < a;b++){
 
if(a % b == 0){
System.out.println("非質數");
break;
}
if(b == a - 1){
System.out.println("質數");
}
}
}
}
 
ZeroJudge Forum