文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序习题-编写输入学生信息的input函数[11.4]

C程序习题-编写输入学生信息的input函数[11.4]

时间:2010-08-26  来源:chengxiaopeng

    在上题的基础上,编写一个函数input,用来输入5个学生的数据记录。     根据上面的代码,我们只需要把通过循环吧数据录入的结构体数组的一部分摘出来放在另外一个函数中即可。代码如下:  

#include <stdio.h>

struct student
{
       int num;
       char name[10];
       int score[3];
};
void input(struct student *,int);
void print(struct student *,int);
int main(int argc, char *argv[])
{
    struct student stu[5],*p;
    int i;
    p = &stu;
    input(p,5);
    printf("the source result:\n");
    
    print(p,5);
    system("pause");
    return 0;
}

void input(struct student *p,int n)
{
     int i;
     for (i = 0; i < n; i++,p++)
     {
        printf("please input %d student info.\n",i + 1);
        scanf("%d%s%d%d%d",&(p->num),&(p->name),&(p->score[0]),&(p->score[1]),&(p->score[2]));
     }
}

void print(struct student *p,int n)
{
     struct student *stu;
     
     int i;
     for (stu = p; stu < p + n; stu++)
     {
         printf("num = %d ,name = %s , score[1] = %d ,score[2] = %d ,score[3] = %d\n",
                     stu->num,stu->name,stu->score[0],stu->score[1],stu->score[2]);
     }
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载