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

Method main

Programs/PrintPattern.java:13–22  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

11public class PrintPattern {
12
13 public static void main(String args[]){
14
15 for(int i=1;i<=5;i++){
16 for(int j=1;j<=i;j++){
17 System.out.print("* ");
18 }
19 System.out.println();
20 }
21
22 }
23
24}

Callers

nothing calls this directly

Calls 1

printMethod · 0.80

Tested by

no test coverage detected