返回列表 發帖
  1. import java.io.*;
  2. import java.lang.Math;
  3. import java.util.ArrayList;

  4. public class HW
  5. {                             
  6.         public static void main(String args[])throws IOException
  7.         {
  8.              MathP obj = new MathP();
  9.                          for(int j=4;j<=1000;j++)
  10.                          {
  11.                    System.out.print(obj.IsPrime(j)+",");                  
  12.                          }
  13.         }
  14. }

  15. class MathP         
  16. {
  17.    int IsPrime(int N)
  18.      {
  19.        boolean IsP = true;
  20.                
  21.        for(int i = 2; i< N-1 ; i++)
  22.         {
  23.             if( N % i == 0 )
  24.             {
  25.                 IsP = false;
  26.                 break;
  27.             }                                
  28.             else
  29.             {                                      
  30.             }                          
  31.         }
  32.                
  33.         if( IsP )
  34.          {
  35.            return N;
  36.          }
  37.       }
  38. }        
複製代碼
//  奕昇

TOP

返回列表