A.somethingB.anythingC.anywhereD.somewhere
A. something
B. anything
C. anywhere
D. somewhere
查看答案
Monsieur Label and his wife send their children to learn Chinese because they hope that their children can learn as many foreign languages as possible.
A. Y
B. N
C. NG
Woman: I want to try something in the project. What's your opinion?
Man: Great, I prefer to go by the book. At least it is safer, isn't it?
Question: What does the man suggest?
A. Strictly obeying the established rules.
B. Trying something new from the book.
C. Testing a new but safer method.
D. Learning a new method through practice.
有以下程序,程序中库函数islower(ch)用以判断ch中的字母是否为小写字母
#include<stdio.h>
#include<ctype.h>
void fun(char *P)
{int i=0;
while(p[i])
{if(p[i]==‘ ’&&islower(p[i-1]))p[i-1]=p[i-1]=‘a’+‘A’;
i++;
}
}
main()
{char s1[100]=”ab cd EFG!”;
fun(a1);printf(”%s\n”,s1);
}
程序运行后的输出结果是()。
A. ab cd EFG!
B. Ab Cd EFg!
C. aB cD EFG!
D. ab cd EFg!