A. they are horrified to get the bad news B. they think no medicine is effective C. they think the pain will disappear as soon as you forget it D. they are too busy 参考答案:A 答案解析:细节题。根据第二段中的“Some people are so terrified of getting news from a doctor...”,便可以推断出A为正确答案。
第28题: [单项选择]若有以下函数首部: int fun(double x[10],int *n) 则下面针对此函数的函数声明语句中正确的是( )。 A. int fun(double x,int *n); B. int fun(double int); C. int fun(double *x,int n); D. int fun(double *,int *); 参考答案:D 答案解析:[解析] 本题考查的是函数的声明。函数声明的一股形式为: 函数类型函数名(参数类型1[,参数名1],参数类型2 [,参数名2].……); 其中,参数名也可以省略。本题中的fun函数