第3题: [单项选择]He did his best to {{U}}inspire{{/U}} his team to great efforts. A. persuade B. instruct C. encourage D. discourage 参考答案:C 答案解析:[解析] 根据划线词所在的搭配结构:“v.+his son to do…”判断只有A和C可能是答案 (persuade sb.to do sth./“说服某人做……”;encourage sb.to
第4题: [单项选择]下列函数的运行结果是( )。
#include <iostream.h>
int f(int a,int b)
{ int c;
if (a > b)c=1;
else if(a==b)c=0;
else c=-1;
return(c);}
void main( )
{ int i=2,j=3;
int p=f(i,j);
cout << p;}
A. -1 B. 1 C. 2 D. 编译出错,无法运行 参考答案:A 答案解析:本题的函数是根据a和b的值来给c赋值。