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

4 lines
40 B
C++
Raw Permalink Normal View History

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