第30624题 单选题
在C++中运行以下代码,输出结果正确的是哪一项?
#include <iostream>
using namespace std;
int main() {
    char ch = 'A' + 32;
    int res = 'd' - 'a';
    cout << ch << "," << res << endl;
    return 0;
}
A

a,3

B

A,3

C

a,4

D

97,3

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