(String args[])
| 27 | } |
| 28 | |
| 29 | public static void main(String args[]) |
| 30 | { |
| 31 | int n = 30; |
| 32 | System.out.print("Following are the prime numbers "); |
| 33 | System.out.println("smaller than or equal to " + n); |
| 34 | SieveOfEratosthenes g = new SieveOfEratosthenes(); |
| 35 | g.sieveOfEratosthenes(n); |
| 36 | } |
| 37 | } |
| 38 |
nothing calls this directly
no test coverage detected