單項選擇題

下面的C程序完成的功能是()。
#include
#defineSIZE5
voidfunc(intdata[SIZE]);
main()
{
inti,buf[SIZE];
printf(""Pleaseinput%dnumbers:"",SIZE);
for(i=0;iscanf(""%d"",&buf[i]);
func(buf);
for(i=0;iprintf(""%5d"",buf[i]);
}
voidfunc(intdata[SIZE])
{
inti,j,d;
for(i=0;ifor(j=0;jif(data[j]>data[j+1])
{
d=data[j];
data[j]=data[j+1];
data[j+1]=d;
}
}

A.對一維數(shù)組降序排序
B.對一維數(shù)組升序排序
C.對一維數(shù)組逆向排序
D.對一維數(shù)組順序排序


您可能感興趣的試卷

你可能感興趣的試題

5.單項選擇題

請讀程序:
main()
{char*p;
chars[80];
scanf("%s",s);
p=s[0];
printf("%s",p);
}
請判斷上面程序()

A.錯誤:p=s[0];正確:p=*s;
B.錯誤:p=s[0];正確:p=s[];
C.錯誤:p=s[0];正確:p=s;
D.錯誤:p=s[0];正確:p=&s;