第23185题 判断
判断如下C++程序的输出是否为A
char x = 65;
x++;
cout << x++ << endl;
A

B