c++1274.

lxj20130303 2022-10-30 22:15:02 3

#include using namespace std; int main() { int a; cin >> a; if (a % 2 == 1) { cout << "This is an integer."; } if (a % 2 == 0) { cout << "This is an integer. It's even. "; }

return 0;

}

{{ vote && vote.total.up }}