Loops
A simple introduction about Loops in java programming There are mainly three types of loops. 1.For loop 2.While loop 3.Do While loop As in the name the "Loop" means a cycle ,which it stops after a certain boolen condition. In this post i will describe about the For loop. Here is a small Example for the for loop. class Myjava { public static void main(String args[]){ for(int x=0 ; x<5 ; x++){ System.out.print("kamal-->"); System.out.println(x); } } } out put of the ...