While statements?
Which one is better to use?
do {
statements
} while (condition)
or
while (condition) {
statements
}
or
for (initialization; condition; increase) statement;
do {
statements
} while (condition)
or
while (condition) {
statements
}
or
for (initialization; condition; increase) statement;
