- import java.io.*;
- import java.lang.Math;
- import java.util.ArrayList;
- public class HW
- {
- public static void main(String args[])throws IOException
- {
- MathP obj = new MathP();
- for(int j=4;j<=1000;j++)
- {
- System.out.print(obj.IsPrime(j)+",");
- }
- }
- }
- class MathP
- {
- int IsPrime(int N)
- {
- boolean IsP = true;
-
- for(int i = 2; i< N-1 ; i++)
- {
- if( N % i == 0 )
- {
- IsP = false;
- break;
- }
- else
- {
- }
- }
-
- if( IsP )
- {
- return N;
- }
- }
- }
複製代碼 // 奕昇 |