判断奇偶数【C】

#include<stdio.h>
int main()
{
    int a;
    scanf("%d",&a);
    if(a%2==0)
    {
        printf("Yes!");
    }
    else printf("No!");
    return 0;
}

原文地址:https://www.cnblogs.com/adgn/p/4140885.html