I had planned to leave Guangzhou () the morning of the 20th, but the take-off was postponed till the late afternoon because of the weather.A、inB、onC、atD、for

题目
I had planned to leave Guangzhou () the morning of the 20th, but the take-off was postponed till the late afternoon because of the weather.

A、in

B、on

C、at

D、for


相似考题
更多“I had planned to leave Guangzhou () the morning of the 20th, but the take-off was postponed till the late afternoon because of the weather. ”相关问题
  • 第1题:

    下面程序的运行结果是includemain(){char a[]="morning",t; int i,j=0; for(i=1;i<7;i

    下面程序的运行结果是 #include<stdio.h> main() { char a[]="morning",t; int i,j=0; for(i=1;i<7;i++) if(a[j]<a[i])j=i; t=a[j]; a[j]=a[7]; a[7]=a[j]; puts[a];}

    A.mrgninr

    B.mo

    C.moring

    D.morning


    正确答案:B
    解析:本题考查了一维数组元素的引用方法。题中数组a为一字符串数组,通过数组首地址和下标可以引用数组中的每个元素。因为字符数组相当于字符串,所以可以用字符串输出函数puts()来输出字符数组中的各个字符。

  • 第2题:

    有以下程序

    #include<stdio.h>

    void fun(char**p)

    {++p;printf("%s",*p);}

    main

    {char*a[]={"Morning","Afternoon","Evening"," Night");

    fun(a);

    }

    程序的运行结果是( )。

    A.A.Afternoon

    B.fternoon

    C.Morning

    D.orning


    正确答案:A
    执行fun(a)语句时,P指向的是字符串数组a的第一个字符串“Morning”,p自加1之后,p指向字符串数组a的第2个字符串“Afternoon”。

  • 第3题:

    在接听酒店外线电话,且对方是说英语的客人,我们该如何应对?

    A.Good morning /afternoon/ evening.#B.Hello, this is XX hotel.#C.Morning, what can I do for you?#D.Good morning /afternoon/ evening, XXX hotel. Thanks for your calling. How may I assist you?
    Good morning /afternoon/ evening, XXX hotel. Thanks for your calling. How may I assist you?

  • 第4题:

    有以下程序 #include<stdio.h> void fun(char**p) {++p;printf("%s",*p);} main {char*a[]={"Morning","Afternoon","Evening"," Night"); fun(a); } 程序的运行结果是( )。

    A.Afternoon

    B.fternoon

    C.Morning

    D.orning


    正确答案:A
    执行fun(a)语句时,P指向的是字符串数组a的第一个字符串“Morning”,p自加1之后,p指向字符串数组a的第2个字符串“Afternoon”。

  • 第5题:

    有以下程序

    #include<stdio.h>

    void fun(char **p)

    {

    ++p; printf(“%s\n”,*p);

    }

    main()

    {

    char *a[]={“Morning”,”Afternoon”,”Evening”,”Night”};

    fun(

    A.;

    }

    程序的运行结果是( )。

    A.Afternoon

    B.fternoon

    C.Morning

    D.orning


    正确答案:A

  • 第6题:

    下面语句执行后,变量w中的值是____。 w=Choose(2 , "Morning", "Afternoon", "Day", "Night",)

    A.Morning

    B.Afternoon

    C.Day

    D.Night


    C 题中变量W的定义为double型,函数fun2,的定义为int型,按照各类数值型数据间的混合运算,整型数据被转换为实型数据。