I write the letter ________ you something. (A) tell(B) telling(C) to tell(D) tells

I write the letter ________ you something.

(A) tell

(B) telling

(C) to tell

(D) tells


相关考题:

Kathy, I’d like you to meet Maggie Jacobs.(). Maggie. You’re doing a great job.A、 I‘m pleased to meet youB、 It’s great to see you againC、 I' m happy to meet you too

What can I do for you, Madam?()500yuan in cash to my son in Beijing University.A、 You’d better remitB、 I'd like to remitC、 I'd rather remit

I'll lend my car_____you.

I've got something ___ you. AtellBto tellCtellingDfor telling

– David, you've been losing your temper over nothing lately.– ( ).A. I haven’t been getting much sleep eitherB. You’d better not push yourself too hard, or you’ll get sickC. I’m sorry. I shouldn’t have blown up like thatD. You’d better do exercises regularly

20、以下程序的输出结果是()? letter = ['A','B', 'C', 'D', 'D'] for i in letter: if i == 'D': letter.remove(i) print(letter)A.['A','B', 'C', 'D']B.['A','B', 'C', 'D','D']C.['A','B', 'C', 'D','D','D']D.['A','B', 'C']

24、将文献导入EndNote后,再安装Cite-While-You-Write插件,用户使用WORD撰写论文时便可实现参考文献的边写边插。

将文献导入EndNote后,再安装Cite-While-You-Write插件,用户使用WORD撰写论文时便可实现参考文献的边写边插。

若输入: 11 12 13 14 15 0 则写出下面程序的输出结果。 class Program { static void Main(string[] args) { int no = 0, i ; do { Console.Write("请输入整数:"); i= int.Parse(Console.ReadLine()); no += i; } while (i != 0); Console.Write("和是{0}", no); } }

补全代码:执行下面程序,程序输出结果为:0 1 2 3 class Program{ public void printArray(){ int[] ia = new int[4]; for (int i = 0; i < ia.Length; i++){ ia[i] = i; Console.Write("{0} ", ia[i]); } } static void Main(string[] args){ Program lin = new Program(); ________; } }A.lin.printArray()B.Console.Write("{0} {1} {2} {3}");C.printArray()D.Console.Write(0123);