public class DemoLoops {
public static void main(String[] args) {
int counter = 0;
while (counter<5){
System.out.println("Welcome");
counter++;
//end while
int counter2 = 0;
do{
System.out.println("Welcome2");
counter2++;
}while (counter2<5);> (int i=0;i<5;i++){ color="#33cc00">//end for i
} //end main
} //end class
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment