问答详情
源自:2-1 Linux C语言 初始指针

数值传递 求大神

#include <stdio.h> 

void sort(int score[])

{

int i,j;

for(i=0;i<9;i++)

{

for(j=8;j>=i;j--)

{

if(score[j]>score[j+1])

{

int temp;

temp = score[j];

score[j] = score[j+1]; 

score[j+1]=temp;                  

}                 

}                   

}

for(i=0;i<9;i++)

{

printf("%d ",score[i]);               

}

    

}

 


int main()

{

int score[9]={1,2,3,6,8,9,98,54,564};

sort(score);

return 0;

}

这个程序没有用指针 也可以传递数值 为什么

提问者:待我强大给你天下 2016-03-02 17:53

个回答

  • 慕瓜5843645
    2016-03-02 19:51:49

    你有中间变量呀