Menu

while loop

int a =5; // loop count initialization
while(a<5){
 System.out.println(a);
a++;
}
What do you think will be the output of this simple program?

SOCK MERCHANT PROGRAM JAVA

public class foxyCoders { // This class is about modifiers and packages     public static void main (String args[]) { int [] ...