c语言判断一个数是否为偶数

#include <stdio.h> #include <stdbool.h> _Bool isOu(int n){ //高度注意:&的优先级低于== if((n&1)==0){ return true; }
相关文章
相关标签/搜索