一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
”You ____ have a wrong number,” she said. “There’s no one of that name here.”A. needB. canC. mustD. would
点击查看答案
7. If I _______ you,l_______ take an umbrella with me.A. was ; shouldB. was ; wouldC. were ; willD. were ; would
If you don’t like to swim, you _____as well stay at home.A)should B)may C)can D)would
"You _________ finish your homework before the dinner." said mother.A.shouldB.have toC.mustD.would
以下程序的输出结果是()。includevoid func(char**m){++m:cout以下程序的输出结果是( )。 #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.MORNINGC.AFTERTOOND.EVENING
以下程序的输出结果是()。includevoid func(char**m) {++m:cout以下程序的输出结果是( )。 #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.MORNINGC.AFTERTOOND.EVENING
以下程序的输出结果是()。includeincludeusing namespace std;void func(cha以下程序的输出结果是( )。 #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.MORNINGC.AFTERNOOND.EVENING