第32202题 单选题
以下C++代码运行后输出的结果是?
#include <iostream>
#include <cmath>
using namespace std;
int main() {
    int a = 2, b = 3;
    cout << (a ^ b) << " " << pow(2,3);
    return 0;
}
A

1 8

B

8 8

C

1 9

D

编译运行时报错

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析