题目内容

The Sword Dance, a dance famously performed by a renowned dancer named Lady Gongsun, is graceful.

A. 对
B. 错

查看答案
更多问题

Some pieces of music and dance, for example, the masked dance--The King of Lanling, survive in Japan.

A. 对
B. 错

Folk dances are very important parts of China's cultural heritage.

A. 对
B. 错

有以下程序#include void fun(int a, int b){ int t;t=a; a=b; b=t;}main(){ int c[10]={1,2,3,4,5,6,7,8,9,0), i;for (i=0; i<10; i+=2) fun(c[i], c[i+l]);for (i=0; i<10; i++) printf("%d,", c[i]);printf("\n");}程序的运行结果是( )。

A. l,2,3,4,5,6,7,8,9,0,
B. 2,l,4,3,6,5,8,7,0,9,
C. 0,9,8,7,6,5,4,3,2,1,
D. 0,1,2,3,4,5,6,7,8,9,

有以下程序#includeint a=5;void fun(int b){ int a=10;a+=b;printf(“%d”,a);}main(){ int c=20;fun(c);a+=c;printf(“%d\n”,a);}程序运行后的输出结果是____。

答案查题题库