-->
当前位置:首页 > 题库 > 正文内容

Multiple choice:After the following program runs, input a capital letter Q from the keyboard, and the output result is

Luz3年前 (2021-05-10)题库249
After the following program runs, input a capital letter Q from the keyboard, and the output result is @ [b] (2)
```
char ch;
ch=getchar( );
ch=ch-'A'+'a';
putchar(ch);
```
A. Q
B. q
C. A
D. a




A.Q
B.q
C.A
D.a


answer:B

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。