RosettaCodeData/Task/Loops-While/C++/loops-while-4.cpp

8 lines
58 B
C++

{
init;
while(cond){
statement;
update;
}
}