If an excellent tour guide makes every effort to ensure everything be well, the tourists will continue to have very positive opinions.
查看答案
The tour guide should remind tourists to put tickets and passports in the check-in luggage.
A. 对
B. 错
If a tourist bags weigh more, he /she should have to pay excess luggage charge.
A. 对
B. 错
The local guide expresses his thanks to tourists for their cooperation, patience and understanding.
A. 对
B. 错
下面程序欲对两个整型变量的值进行交换,以下正确的说法是。main(){int a=10,b=20;printf("(1)a=%d,b=%d\n",a,b);swap(&a,&b);printf("(2)a=%d,b=%d\n",a,b);}swap (int p,int q){int t;t=p;p=q;q=t;}
A. 该程序完全正确
B. 该程序有错,只要将语句swap(&a,&b);中的参数改为a,b即可
C. 该程序有错,只要将swap()函数中的形参p、q和变量t均定义为指针即可
D. 以上说法都不正确