MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

Programs/seive.java:29–36  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

sieveOfEratosthenesMethod · 0.95
printMethod · 0.80

Tested by

no test coverage detected