问题 单项选择题

下列程序的输出结果是( )。
#include <iostream>
using namespace std;
int main()

char a[]="Hello,World";
char *ptr=a;
while(*ptr)

if(*ptr>='a'&&*ptr<='z')
cout<<char(*ptr+'A'-'a');
else cout<<*ptr;
ptr++;

retur 0;

A.HELLO,WORLD
B.Hello,World
C.hELLO,world
D.hello,world

答案

参考答案:A

单项选择题
单项选择题 A1/A2型题