| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1405 人关注过本帖
标题:数组作为函数参数问题
取消只看楼主 加入收藏
万仁全
Rank: 1
等 级:新手上路
帖 子:23
专家分:1
注 册:2011-8-31
结帖率:100%
收藏
 问题点数:0 回复次数:1 
数组作为函数参数问题
#include"stdio.h"
#define size 100



void accept_array(int a[],int size)
{
    int i;
    printf("请输入%d个人的成绩:\n",size);
    for(i=0;i<size;i++)
        scanf("%d",&a[i]);
}

void sort(int a[],int size)
{
    int min,i,j,temp;
    for(i=0;i<size;i++)
    {
        i=min;
        for(j=i;j>size;j++)
            if(a[min]>a[j])
                min=j;
            temp=a[min];
            a[min]=a[j];
            a[j]=temp;
    }

}


void show_array(int a[],int size)
{
    int i;
    for(i=0;i<size;i++)
        printf("%2d ",&a[i]);
    printf("\n");
}


void main()
{
    int score[size];
    accept_array(score,size);
    printf("before sorted: ");
    show_array(score,size);
    sort(score,size);
    printf("after sorted: ");
    show_array(score,size);

}

D:\Microsoft Visual Studio\MyProjects\学生成绩排序\函数学生成绩排序问题.cpp(6) : error C2143: syntax error : missing ')' before 'constant'
D:\Microsoft Visual Studio\MyProjects\学生成绩排序\函数学生成绩排序问题.cpp(6) : error C2143: syntax error : missing ';' before 'constant'
D:\Microsoft Visual Studio\MyProjects\学生成绩排序\函数学生成绩排序问题.cpp(6) : fatal error C1004: unexpected end of file found
很简单的一个程序,有三个问题,我实在是没发现在哪里,谢谢大侠帮我看看,感激不尽











搜索更多相关主题的帖子: include 
2011-09-13 19:32
万仁全
Rank: 1
等 级:新手上路
帖 子:23
专家分:1
注 册:2011-8-31
收藏
得分:0 
很谢谢各位了!!万分感激
2011-09-14 18:46
快速回复:数组作为函数参数问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.048059 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved