已知unsigned intx=015,y=0x2b,求x|y,写出代码用十六进制表示
时间: 2023-05-17 15:07:14 浏览: 102
求32位机器上unsigned int的最大值及int的最大值的解决方法
5星 · 资源好评率100%
答案是 0x3f,代码如下:
unsigned int x = 015;
unsigned int y = 0x2b;
unsigned int result = x | y;
printf("%x", result); // 输出 0x3f
阅读全文