1:代码如下:
// 3.3.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> using namespace std; void main() { int iInput; cout << "输入一个整数:" << endl; cin >> iInput; //输入一整型数 if(iInput%2!=0) cout << "这个整数是奇数" << endl; else cout << "这个整数是偶数" << endl; }
运行结果: