A. sent for them
B. sent them off
C. sent them out
D. sent off them
By his genius he()all these old stories()masterpieces of his life.A、put; intoB、turned; intoC、wrote; asD、set; as
点击查看答案
He usually goes out for ___ walk in ___ evening.A.a, theB.a, /C.the, /D./, /
I _____a letter when she ____.A.write, callsB. wrote, calledC.was writing, callsD. was writing, called
A well () job description can answer a lot of questions from job seekers.A.writtenB.writeC.wrote
He often works in ( )evening.A. aB. /C. the
以下程序的输出结果是()。includevoid func(char**m) {++m:cout以下程序的输出结果是( )。 #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.MORNINGC.AFTERTOOND.EVENING
有以下程序#include void fun(char **p){ p=p+2; printf("%s\n",*p);}main(){ char *a[]={"Morning","Afternoon","Evening","Night"}; fun(a);}程序的运行结果是A.rningB.afternoonC.ternoon D.Evening