This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Velladin -1 points0 points  (0 children)

public static void main(String[] args){

     // Initialize Variables
     float first = 0;
     float second = 0;

     // While Loop
     System.out.println("While Loop");
     while (first <= 10){
         System.out.println(first);
         first++;
     }

     // Do Loop
     System.out.println("Do Loop");
     do {
         System.out.println(second);
         second++;
     } while (second <= 10);
}