鱼C论坛

 找回密码
 立即注册
12
返回列表 发新帖
楼主: 朕也来学学

结构体数组

[复制链接]
发表于 2024-1-13 11:35:57 | 显示全部楼层
本帖最后由 jackz007 于 2024-1-13 16:34 编辑
#include <stdio.h>

typedef struct student {                // 【添加】
        int  studentID        ;         // 【添加】
        char studentName[256] ;         // 【添加】
        char studentSex       ;         // 【添加】
        struct {                        // 【添加】
                int year      ;         // 【添加】
                int month     ;         // 【添加】
                int day       ;         // 【添加】
                } birthday    ;         // 【添加】
        int score[4]          ;         // 【添加】
} STUDENT                     ;         // 【添加】

int main(void)
{
        int i , j , sum[30]   ;
        STUDENT stu[30] =  {{100310121 ,"王刚" ,'M' , {1991,5,19} , {72,83,90,82}} ,
                            {100310122,"李小明",'M',{1992,8,20},{88,92,78,78}},
                            {100310123,"王丽红",'F',{1991,9,19},{98,72,89,66}},
                            {100310124,"陈莉莉",'F',{1992,3,22},{87,95,78,90}}} ;
        for (i = 0 ; i < 4 ; i ++) {
                sum[i] = 0                                                      ;
                for(j = 0 ; j < 4 ; j ++) sum[i] = sum[i] + stu[i] . score [j]  ;
                printf("|%10d | %6s | %c | %4d/%02d/%02d |%3d |%3d |%3d |%3d | %4.1f |\n" , //【修改】
                       stu[i].studentID,
                       stu[i].studentName,
                       stu[i].studentSex,
                       stu[i].birthday.year,
                       stu[i].birthday.month,
                       stu[i].birthday.day,
                       stu[i].score[0],
                       stu[i].score[1],
                       stu[i].score[2],
                       stu[i].score[3],
                       sum[i]/4.0)                                              ;
        }
        return 0                                                                ;
}
        编译、运行实况:
D:\[exercise]\C>g++ -static -o x x.c

D:\[exercise]\C>x
| 100310121 |   王刚 | M | 1991/05/19 | 72 | 83 | 90 | 82 | 81.8 |
| 100310122 | 李小明 | M | 1992/08/20 | 88 | 92 | 78 | 78 | 84.0 |
| 100310123 | 王丽红 | F | 1991/09/19 | 98 | 72 | 89 | 66 | 81.2 |
| 100310124 | 陈莉莉 | F | 1992/03/22 | 87 | 95 | 78 | 90 | 87.5 |

D:\[exercise]\C>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 17:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表