Section A
Directions: Translate the following English into Chinese. (10 points)
He had scarcely handed me the letter when he asked me to read it.
查看答案
听力原文:Woman: You know, you work hard, get all sorts of qualifications, try to be the best in your field, and then what? Well, I've done all that, and now I'm interested in the new generation of men and women coming into business. I remember I needed plenty of encouragement and guidance along the way, and I believe that with my experience I can steer youngsters in the right direction to achieve what they want. That's my priority for the future.
(17)
以下程序的功能是:把键盘输入的10个整数显示在屏幕上。
include<stdio.h>
main()
{ int a[10],i;
for(i=0;i<10;++i)
scanf("%d",a[i]);
for(i=0;i<10;++i)
printf("%d",a[i]);
}
错误:______
改正:______
参考答案:错误