#9889: WA2002


a1388072 (乂無聊之神乂)

學校 : 臺北市立大安高級工業職業學校
編號 : 28920
來源 : [114.42.192.176]
最後登入時間 :
2019-08-03 02:13:31
a007. 判斷質數 | From: [36.224.111.96] | 發表日期 : 2015-06-08 19:01

#include <stdio.h>
#include <string.h>
#include <math.h>

int main(){
  int a[4793];
 int b;
 int t;
 int e;
 int x;
 int ct;
 b = 2;
 e = 1;

 a[1] = 2;
 while (b != 46340)
 {
  b++;


  x = 0;
  t = 0;
  while (t<e && x == 0)
  {
   t++;
   if (b % a[t] == 0)
   {
    x = 1;
   }
  }
  if (x == 0)
  {
   e++;
   a[e] = b;
 
  }
 }
 while (scanf("%d", &ct) != EOF)
 {
  b = 1;
  x = 0;
  while (b!= e && x == 0)
  {
  
   if (ct == a[b])
   {
    x = 1;
   }
   b++;
  }
  if (x == 1)
  {
   printf("質數\n");
  }
  else
  {
   printf("非質數\n");
  }

 }
 return(0);


}

求解 

 
ZeroJudge Forum