int main() {
int num;
cout << "Enter a number: ";
cin >> num;
cout << "you entered ";
cout << num;
cout << endl;
return 0;
}
How will a program know when an odd number is input by the user?
For an "If statement"... I can't say If (num == odd) { cout << "all done"