X Tutup
// Program to demonstrate the use of for loop - package ForLoop; public class ForLoop { public static void main(String[] args) { // TODO Auto-generated method stub int i; for (i = 0; i <= 5; i++) { System.out.println(i); } } }
X Tutup