| 1 | // Program to demonstrate the use of for loop - |
| 2 | package ForLoop; |
| 3 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected