C语言判断是偶数或奇数的程序

#include <stdio.h>

int main() {
   int even = 24;
   int odd  = 31;

   if (even % 2 == 0)
      printf("%d is even/n", even);

   if (odd % 2 != 0 )
      printf("%d is odd/n", odd);

   return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265317.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论