标题:求大神指导指导
取消只看楼主
a83342358
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2018-4-9
结帖率:66.67%
已结贴  问题点数:10 回复次数:0 
求大神指导指导
这是代码
#include <stdio.h>
#include <malloc.h>
struct student
{
    char num[13];char name[10];
    char sex[10];
    struct student *next;
};

int Input(struct student stu[];int n)
{
    int i;
    student *p,*r;
    r=head;
    for(i=0;i<n;i++)
    {
        s=(struct student*)malloc(sizeof(struct student));
        printf("请输入第%d个学生的学号:\n",n+1);
        scanf("%s",&s->num);
        printf("请输入第%d个学生的姓名:\n",n+1);
        scanf("%s",&s->name);
        printf("请输入第%d个学生的性别:\n",n+1);
        scanf("%s",&s->sex);
        r->next=s;
        r=s;
    }
    r->next=NULL;
    return 0;
}

int main()
{
    struct student stu[3];
    Input(stu,3);
    return 0;
}

这是错误
c:\users\stonezzzs\desktop\vc\员工管理(操作)\员工管理(操作).cpp(10) : error C2143: syntax error : missing ')' before ';'
c:\users\stonezzzs\desktop\vc\员工管理(操作)\员工管理(操作).cpp(10) : error C2059: syntax error : ')'
c:\users\stonezzzs\desktop\vc\员工管理(操作)\员工管理(操作).cpp(11) : error C2239: unexpected token '{' following declaration of 'n'
c:\users\stonezzzs\desktop\vc\员工管理(操作)\员工管理(操作).cpp(34) : error C2660: 'Input' : function does not take 2 parameters

不明白这些错误在哪里,求指导啊

搜索更多相关主题的帖子: struct student 员工 管理 操作 
2018-04-09 23:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-485922-1-1.html




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

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