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

8 lines
58 B
C++
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
{
init;
2018-06-22 20:57:24 +00:00
while(cond){
2013-04-10 21:29:02 -07:00
statement;
update;
}
}