位运算求输出结果main(){char x=040; printf("%o\n",x<<1);}[解决办法]
char x = 040; //x为32 int temp = x << 1;//temp 64,八进制为100 printf("%o\n",temp );