2020年11月11日
摘要: 1、判断奇偶数 void odd_even(int n) { if(n & 1 == 1) { printf("n是奇数!\n"); } } 2、交换两个数字 int swap(int x, int y) { x = x ^ y; y = x ^ y; x = x ^ y; } 基于异或运算的如下性 阅读全文
posted @ 2020-11-11 20:07 裸睡的猪 阅读(728) 评论(0) 推荐(0) 编辑