Forked from
Nicolas Thiery / wims-info
219 commits behind the upstream repository.
-
Viviane Pons authoredViviane Pons authored
loop-indices.cpp 157 B
#include <iostream>
using namespace std;
int main() {
int i = 0;
while(i < 11) {
cout << i << endl;
i = i + 2;
}
}