【单选题】【消耗次数:1】
We will be losing money this year unless that new economic plan of yours ____ miracle.
is working
works
will be working
worked
参考答案:
复制
纠错
相关题目
【单选题】 We will be losing money this year unless new economic plan of yours _____miracle
①  is working
②  works
③  will be working
④  worked
【单选题】 Not only ______ our money, but we were also in danger of losing our lives.
①  we lost
②  lost we
③  we did lose
④  did we lose
【单选题】 ___ is often the case, we have worked out the production plan.
①  Which
②  When
③  What
④  As
【单选题】 We really appreciate our working environment, in -- --- there was open, friendly workplace communication.
①  how
②  what
③  whom
④  which
【单选题】 We need to design a new() for the third year.
①  source
②  system
③  syllabus
④  status
【单选题】 She prefers_______ together to working all by herself.
①  working
②  to work
③  to working
【单选题】 I [] to working at a quick tempo.
①  am used
②  used
【单选题】 Eeveryone is working harder and living a happier life now, _________ ?
①  arent they
②  arent we
③  isnt it
④  isnt one
【单选题】 ___the rain ,he went on working in the garden.
①  In addition to
②  In spite of
③  Except for
【单选题】 He____________ working as if nothing had happened.
①  continue
②  continues
③  continuing
④  continued
随机题目
【简答题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是[填空1]。for (j=0;jj++)for (i=5;i;i--){...}
【简答题】 以下程序的运行结果是[填空1]。#include stdio.hvoid main(){int i,j;for (i=4;ii--){printf(*for (j=1;jj++)printf(*} printf(\n}
【简答题】 以下程序的输出结果是[填空1]。#include stdio.h void main( ){ int a,b;for(a=1,b=1;aa++){ if (b=10) break;if (b%5==1) { b+=5; continue; } }printf(%d\n }
【简答题】 以下程序输出结果是[填空1]。#include stdio.hvoid main(){ int i, sum=0;for(i=1; i i++)sum+=i;printf(″%d\n″,sum);}
【单选题】 当执行以下程序段时,程序的执行情况是(  )。x=-1;do { x=x*x;} while( !x);
①  循环体将执行一次
②  循环体将执行两次
③  循环体将执行无限次
④  系统将提示有语法错误
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=4;i;i--)for (j=0;j5;j++){...}
①  20
②  24
③  25
④  30
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=5;i;i--)for (j=0;jj++){...}
①  30
②  25
③  24
④  20
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=5;i;i--)for (j=0;jj++){...}
①  20
②  24
③  25
④  30
【单选题】 C语言中while 和do-while 循环的主要区别是(  )。
①  do-while 的循环体不能是复合语句
②  while 的循环控制条件比do-while 的循环控制条件严格
③  do-while 允许从外部转到循环体内
④  do-while的循环体至少无条件执行一次
【单选题】 #include stdio.hvoid main(){ int i,j,k; for(i=1;ii++) for(j=0;jj++) for(k=0;kk++) if( (i*100+j*10+k)==((i*i*i)+(j*j*j)+(k*k*k))) printf(%d%d%d ,i,j,k);}该程序可以输出所有的(  )。
①  素数
②  奇数
③  偶数
④  水仙花数