1 Conditionals
Branch with if/else and combine tests with && / ||.
#include <iostream>
using namespace std;
int main() {
for (int n = 1; n <= 5; n++) {
if (n % 2 == 0) cout << n << " even" << endl;
else cout << n << " odd" << endl;
}
return 0;
}