RosettaCodeData/Task/Loops-While/C++/loops-while-4.cpp
2018-06-22 20:57:24 +00:00

7 lines
58 B
C++

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