第20157题 单选
以下C++代码执行后的输出结果是?
int main()
{
cout << (3 | 16) << endl;
cout << endl;
return 0;
}
A

3

B

16

C

19

D

48

提交0次 正确率0.00%
答案解析