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

Class ForLoop

Programs/ForLoop.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// Program to demonstrate the use of for loop -
2package ForLoop;
3public class ForLoop {
4 public static void main(String[] args) {
5 // TODO Auto-generated method stub
6 int i;
7 for (i = 0; i <= 5; i++) {
8 System.out.println(i);
9 }
10 }
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected