#6129: 逾時問題


mybaby40195 (R)

學校 : 國防大學管理學院
編號 : 21292
來源 : [140.129.109.130]
最後登入時間 :
2014-10-23 22:53:38
a007. 判斷質數 | From: [140.129.109.130] | 發表日期 : 2011-11-30 20:43

import java.util.Scanner;
public class ASD{
 public static void main(String[]args){
  Scanner input=new Scanner(System.in);
  while (input.hasNext()){
   int a=input.nextInt();
   int count=0;
   int b=2;
   while (b<a){
    if (a%b==0){
     count=1;
     break;
    }
    b++; 
   }
   if (count==1){
    System.out.println("非質數");
   }else{
    System.out.println("質數");
   }
  }
 }

     
     請問要修改哪裡?
    
    
      
ZeroJudge Forum