#include (stdio.h) int main () int a=3 a=a^8
// 3 转换为 0011 // 8 转换为 1000 0011 ^ 1000 = 1011 // 1011 对应 十进制数 11 3 ^ 8 = 11