文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C语言实例46:结构体数组

C语言实例46:结构体数组

时间:2010-06-29  来源:hnrainll

#include <stdio.h>
#include <stdlib.h>

struct student
{
    char number[6];
    char name[6];
    int score[3];
} stu[2];

void output(struct student stu[2]);

int main(int argc, char *argv[])
{
    int i, j;
    for(i = 0; i < 2; i++)
    {
        printf("请输入学生%d的成绩:\n", i + 1);
        printf("学号:");
        scanf("%s",stu[i].number);
        printf("姓名:");
        scanf("%s",stu[i].name);
        for(j = 0; j < 3; j++)
        {
            printf("成绩 %d. ",j + 1);
            scanf("%d", &stu[i].score[j]);
        }
        printf("\n");
    }
    output(stu);

    system("pause");
    return 0;
}

void output(struct student stu[2])
{
    int i, j;
    printf("学号 姓名 成绩1 成绩2 成绩3\n");
    for(i = 0; i < 2; i++)
    {
        printf("%-6s%-6s", stu[i].number, stu[i].name)    ;
        for(j = 0; j < 3; j++)
            printf("%-8d",stu[i].score[j]);
        printf("\n");
    }
}


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

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载