Problem D: 零起点学算法24——判断奇偶数

2021-05-18 12:28

阅读:527

标签:scan   clu   code   偶数   class   lse   起点   stdio.h   include   

#includeint main()
{
    int a;
    while(scanf("%d",&a)!=EOF)
    if(a%2==0)
    printf("odd");
    else
    printf("even");
    return 0;
}

 

Problem D: 零起点学算法24——判断奇偶数

标签:scan   clu   code   偶数   class   lse   起点   stdio.h   include   

原文地址:https://www.cnblogs.com/chenlong991223/p/9744492.html


评论


亲,登录后才可以留言!