【简答题】下列程序的功能是:求出数组X中各相邻两个元素的和并依次存放到a数组中,然后输出。请填空。 int main(void) { int x[10],a[9],i; for(i=0; i<10; i++)scanf("%d",&x[i]); for(____;i<10;i++) a[i-1]=x[i]+ x[i-1]; for(i=0; i<9; i++) printf ("%d",a[i]); pri...
【单选题】有一次火箭发射中,因发射当天遇到恶劣天气导致火箭发射失败,引起火箭发射失败的因素是( )
【单选题】毛泽东提出关于社会主义社会基本矛盾学说和关于社会主义社会两类社会矛盾学说的著作是 :
【单选题】The passage suggests that fans at sport events__________.A.show no respect for the truth##
A.
The passage suggests that fans at sport events__________. A.show no respect for the truth
B.
lie about what they see
C.
are controlled by emotion
D.
have no faith in the referee
【简答题】Passage 32 Sport Parachuting The idea of the parachute is almost as old as man’s dream of flight.
【简答题】下列程序的功能是:求出数组x中各相邻的两个元素的和并依次存放到数组a中,然后输出。请填空。 #include int main( ) { int x[10],a[9],i; for(i=0;i<10;i++) scanf("%d", &x[i]); for( ____1____ ; i<10;i++) a[i-1]=x[i]+ ____2____ ; for(i=0; i<9; i++) pri...
【简答题】下列程序的功能是 : 求出数组中各相邻两个元素的和依次存放到 a 数组中,然后输出。请填空。 int main (void) { int x [10], a [9], i; for (i=0; i<10; i++) scanf ("%d", &x [i] ); for ((_); i<10; i++) a[i-1]=x[i]+(_); for (i=0; i<9; i++) printf ...
【简答题】下列程序的功能是:求出数组 x 中各相邻两个元素的和依次存放到 a 数组中,然后输 出。请填空。 (for循环的嵌套使用) main( ) { int x[10],a[9],i; for(i=0; i<10; i+ +) scanf("%d",&x[i]); for( ; i<10; i+ + ) a[i-1]=x[i]+ ;. for(i=0; i<9; i+ +) printf("%d ",a...
【简答题】下列程序的功能是:求出数组 x 中各相邻两个元素的和依次存放到 a 数组中,然后输 出。请填空。 (for循环的嵌套使用) main( ) { int x[10],a[9],i; for(i=0; i<10; i+ +) scanf("%d",&x[i]); for(_ (1) _ ; i<10; i+ + ) a[i-1]=x[i]+ __ (2) ___ ; for(i=0; i<9; i+ ...
【简答题】下列程序的功能是 : 求出数组中各相邻两个元素的和依次存放到 a 数组中,然后输出。请填空。 int main (void) { int x [10], a [9], i; for (i=0; i<10; i++) scanf ("%d", &x [i] ); for (( 第1空 ) ; i<10; ++) a [i-1]=x [i]+( 第2空 ); for (i=0; i<9; i+...