已经做出来了,只是是定义了一个函数,在if条件里调用函数做的- class test318_003
- {
- public static void main(String[] args)
- {
- for (int x = 2 ;x < 101 ; x++ )
- {
- if (x==2)
- {
- System.out.print(2+",");
- }
- else
- {
- if (isPrime(x)==true)
- {
- System.out.print(x+",");
- }
- }
- }
- }
- public static boolean isPrime( int x )
- {
- for ( int i = 2 ; i < x ; i++ )
- if (x % i == 0)
- return false ;
- return true ;
- }
- }
复制代码 |