While/Do-While

while (condition) {
    // do something!
}
do {
    // do something
} while(condition); // DO NOT FORGET SEMICOLON AT END