A、OK, please wait .
B、Yes, I will ask him to answer the phone.
C、One moment, please.
第1题:
A.spare
B.spend
C.speak
第2题:
– Nice weather, isn't it? – ( ).
A. I'm not sure
B. You know it well
C. Yes, it is
D. Yes, it isn't
第3题:
输入hello↙,写出下面程序的运行结果。 #include <stdio.h> #include <string.h> int main() { char s[80],t[200]; int i,sl ; gets(s); sl = strlen(s); for(i=0 ;i<sl ;i++) t[i]=s[sl-i-1] ; for (i=0; i<sl; i++) t[sl+i] = s[i]; t[sl+i]='0' ; puts(t); return 0; }
第4题:
____ I?know,?there?isn’t?such?a?word?in?English.
A、As much as
B、So far as
C、As long as
D、As soon as
第5题:
有以下程序段#include <stdio.h>void fun(char*fname,char*st){ FILE * myf; int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i++)fputc(st[i],myf); fclose(myf);}main(){ fun("test.t","new world"); fun("test.t","hello,");}程序执行后,文件test.t中的内容是A.hello, B.new worldhello,C.new world D.hello,rld
第6题:
下面的程序执行后,文件test.t中的内容是 ()。 #include <stdio.h> void fun(char *fname,char *st) {FILE *myf;int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i++) fputc(st[i],myf); fclose(myf); } int main(void) { fun("test.t","new world"); fun("test.t","hello,"); return 0; }
A.hello,
B.new worldhello,
C.new world
D.hello,rld