RosettaCodeData/Task/Loops-While/C++/loops-while-4.cpp
2023-07-01 13:44:08 -04:00

7 lines
58 B
C++

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