一Would you like to go to the cinema this evening?
--- ____.
A.I'm fine,thank you
B.Yes, I am
C.Yes, that’s a good idea
第1题:
以下程序的输出结果是( )。 #include<iostream.h> void func(char**m) { ++m: cout<<*m<<end1; } void main() { static char*a[]={"MORNING","AFTERTOON","EVENING"}; char**n: n=a; func(n); }
A.为空
B.MORNING
C.AFTERTOON
D.EVENING
第2题:
以下程序的输出结果是( )。 #include<iostream> #include<stdlib> using namespace std; void func(char **m) { ++m; cout<<*m<<endl; } main() { static char *a[]={"MORNING","AFTERNOON","EVENING"); char **n; n=a; func(n); system("PAUSE"); return 0; }
A.为空
B.MORNING
C.AFTERNOON
D.EVENING
第3题:
“You ____ have a wrong number,” she said. “There’s no one of that name here.”
A. need
B. can
C. must
D. would
第4题:
以下程序的输出结果是( )。 #include<iostream.h> void func(char**m) { ++m: cout<<*m<<endl; } void main() { static char*a[]={"MORNING","AFTERTOON","EVENING"}; char**n; n=a: func(n); }
A.为空
B.MORNING
C.AFTERTOON
D.EVENING
第5题:
2.—How _______you?
—I_______ fine, thanks.
A.are;is
B.are; am
C.are;are
D.is,am
第6题:
将一批单词存入一个字符串数组中,例如:{"good","word","work","mean","thank","me","you","or","and"} 进行如下处理: 1) 统计含有子字符串or的单词个数; 2) 统计以字符m开头的单词个数。