// loop practice #include using namespace std; int main() { int i = 0; for (i = 0; i < 10; i+=2) { cout << i << endl; } return 0; }