c語言判斷一個數是否爲偶數

#include <stdio.h> #include <stdbool.h> _Bool isOu(int n){ //高度注意:&的優先級低於== if((n&1)==0){ return true; }
相關文章
相關標籤/搜索