一Would you like to go to the cinema this evening?--- ____.A.I'm fine,thank youB.Yes, I amC.Yes, that’s a good idea

题目

一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


相似考题
更多“一Would you like to go to the cinema this evening?--- ____.A.I'm fine,thank youB.Yes ”相关问题
  • 第1题:

    以下程序的输出结果是()。includevoid func(char**m){++m:cout<<*m<

    以下程序的输出结果是( )。 #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


    正确答案:C

  • 第2题:

    以下程序的输出结果是()。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.MORNING

    C.AFTERNOON

    D.EVENING


    正确答案:C

  • 第3题:

    “You ____ have a wrong number,” she said. “There’s no one of that name here.”

    A. need

    B. can

    C. must

    D. would


    正确答案:C
    解析:must have意思是肯定有什么,依题意可得,答案是C。

  • 第4题:

    以下程序的输出结果是()。includevoid func(char**m) {++m:cout<<*m<

    以下程序的输出结果是( )。 #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


    正确答案:C

  • 第5题:

    2.—How _______you?

    —I_______ fine, thanks.

    A.are;is

    B.are; am

    C.are;are

    D.is,am


    正确答案:B
    2.B[解析】人称不同对应be动词的形式不同,第一人称1对应am,第二人称you对应are,故选B。

  • 第6题:

    将一批单词存入一个字符串数组中,例如:{"good","word","work","mean","thank","me","you","or","and"} 进行如下处理: 1) 统计含有子字符串or的单词个数; 2) 统计以字符m开头的单词个数。


    D 解析:选项A是逐个字符赋值,字符数组末尾无“'\\0'”结束符,因此不是字符串。选项A应更正为:chars[5]={'g','o','o','d','!','\\0'}。选项B的错误在于,在赋值语句中对字符数组进行整体赋值。通常,在定义时可以对字符数组进行字符串的整体赋值。chars[5]='good!';是对选项B的更正。选项C存在语法错误。数组类型为int型,不是char型,不能进行初始化。chars[5]='good!';是对选项C的更正。选项D的“char*s;s='good!';”,是通过指针s指向字符串'good!'。