c how to program 习题2.24

发布于2020-03-12 880 热度

//c how to program 习题2.24
#include <stdio.h>

int main(void)
{
	int x;
	printf("请输入一个整数:");
	scanf("%d", &x);
	if(x%2 == 0){
		printf("%d是一个偶数\n", x);
	}
		if(x%2 != 0){
		printf("%d是一个奇数\n", x);
	}
}

记录工作,记录学习,分享知识,分享经验……