摘要: 1.按位取反操作符 #include<stdio.h> int main() { int a = 0 ; int b = ~a;//"~"是按位取反操作符 //第一步将a按位取反: //00000000000000000000000000000000 //取反: //1111111111111111 阅读全文
posted @ 2022-05-29 22:01 浅影阿 阅读(49) 评论(0) 推荐(0) 编辑