第28100题 单选题
以下C++代码的运行输出结果依次为?
#include <iostream>
using namespace std;
int main() {
    int x = 10;
    double y = 3.2;
    cout << x / 3 << endl;
    cout << x / y << endl;
    cout << 'a' + 5 << endl;
    return 0;
}
A

3, 3.125, 102

B

3, 3, 102

C

3.333..., 3.125, 97

D

3, 3.125, 97

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