I knew that even if the case was one in which it was impossible to__________ the problem in advance,I could handle whatever I could.A. anticipantB. anticipateC. thinkD. participate

题目
I knew that even if the case was one in which it was impossible to__________ the problem in advance,I could handle whatever I could.

A. anticipant

B. anticipate

C. think

D. participate


相似考题
更多“I knew that even if the case was one in which it was impossible to__________ the problem in advance,I could handle whatever I could. ”相关问题
  • 第1题:

    写出下列程序段的输出结果:_______。 int i=1; switch (i%3 ) { case 0: printf("zero"); case 1: printf("one"); case 2: printf("two"); }


    6

  • 第2题:

    写出程序的输出: int i=1; switch (i%3 ) { case 0: printf("zero"); case 1: printf("one"); case 2: printf("two"); }


    onetwo

  • 第3题:

    执行下列程序段后,i的正确结果是() int i=10; switch(i) { case 9:i+=1; case 10:i++; case 11:++i; break; default:i+=i; }

    A.10

    B.11

    C.12

    D.24


    5

  • 第4题:

    下列程序运行后i的值是()。 int i=10; switch(i+1){ case 10:i++;break; case 11:++i; case 12:++i;break; default:i=i+1; }

    A.12

    B.11

    C.13

    D.10


    12

  • 第5题:

    1、写出下列程序段的输出结果:_______。 int i=1; switch (i%3 ) { case 0: printf("zero"); case 1: printf("one"); case 2: printf("two"); }


    A

  • 第6题:

    已知i为整型变量,以下程序段的运行结果为 。 for(i=0;i<3;i++) switch(i) { case 1: cout<<i++; case 2: cout<<i; default: cout<<i; }


    D