文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序习题-用print函数打印学生成绩[11.3]

C程序习题-用print函数打印学生成绩[11.3]

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

    编写一个函数print,打印一个学生的成绩数组,该数组中有5个学生的数据记录,每个记录包括num,name,score[3],用主函数输入这些记录,用print函数输出这些记录。    因为我们知道需要用到5个学生,因此我们需要定义一个关于学生的结构体,定义一个结构体数组。然后使用循环将其输出。在输出时,我们可以使用指向结构体的指针进行操作,代码如下:  

#include <stdio.h>

struct student
{
       int num;
       char name[10];
       int score[3];
};

void print(struct student *,int);
int main(int argc, char *argv[])
{
    struct student stu[5],*p;
    int i;
    p = &stu;
    
    for (i = 0; i < 5; i++)
    {
        printf("please input %d student info.\n",i + 1);
        scanf("%d%s%d%d%d",&stu[i].num,&stu[i].name,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);
    }
    printf("the source result:\n");
    
    print(p,5);
    system("pause");
    return 0;
}

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

金融理财 下载