what is the different between Do/While and While? Because Do/While is Doing something while the condition is true. While is doing something while the condition is true. ??????? I m confused.
They are exactly the same except that do while tests the condition after it runs through the block of statements so its going loop atleast once. While tests the condition before it runs through the statements.
You will realize that you will hardly ever use do-while. Just focus on the while loop.