| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 293 人关注过本帖
标题:大神 帮忙看看程序为什么不能运行啊
取消只看楼主 加入收藏
摄魂动
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2013-11-19
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:0 
大神 帮忙看看程序为什么不能运行啊
#include"stdio.h"
struct score
{
    float chinese;
    float math;
    float C;
};
struct student
{   
    int num;
    char sex;
    struct score scor[3];
    char name[20];
};
int main()
{
    void input(struct student a[]);
    void print(struct student stu[]);
    struct student stu[3],* p;
    p=stu;
    input(p);
    print(p);
    return 0;
}
void input(struct student a[])
{
    printf("please input date\n");
    int i;
    for(i=0;i<3;i++)
    scanf("%d%c%s%f%f%f",&a[i].num ,&a[i].sex ,a[i].name ,&a[i].scor[0],&a[i].scor[1],&a[i].scor[2]);
}
void print(struct student stu[])
{
    printf("学号\t姓名\t性别\t语文\t数学\tC语言\n");
    int i;
    for(i=0;i<3;i++)
        printf("%d\t%s\t%c\t%f\t%f\t%f\n",stu[i].num,stu[i].name,stu[i].sex,stu[i].scor[0],stu[i].scor[1],stu[i].scor[2]);
}
搜索更多相关主题的帖子: include please return 
2013-12-17 17:42
快速回复:大神 帮忙看看程序为什么不能运行啊
数据加载中...
 
   



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

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