AWGAWG


私信TA

用户名:AWGAWG

访问量:348

签 名:

等  级
排  名 12003
经  验 997
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

#include<stdio.h>
#include<mm_malloc.h>

typedef struct student_info
{
    char s_id[16];
    char s_name[32];
    int s_score[3];
} student_info;

void input(student_info *L)
{
    scanf("%s %s %d %d %d", L->s_id, L->s_name, &(L->s_score[0]), &(L->s_score[1]), &(L->s_score[2]));
}

void output(student_info *L)
{
    printf("%s,%s,%d,%d,%d\n", L->s_id, L->s_name, L->s_score[0], L->s_score[1], L->s_score[2]);
}

int main()
{
    student_info *list;
    int n=0, i=0;
    scanf("%d", &n);
    while (getchar()!= '\n')
        continue;
    
    if (n>0 && n<100)
        list = (student_info *)malloc(sizeof(student_info)*n);
    else
        return 0;
    
    for (i=0; i<n; i++)
    {
        input(&list[i]);            // 按行获取
        while (getchar()!= '\n')
            continue;
    }
    for (i=0; i<n; i++)
    {
        output(&list[i]);            // 按行输出
    }
    free(list);
    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »