题解 1050: [编程入门]结构体之成绩记录

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

[编程入门]结构体之成绩记录

摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{    char num[100];    char name[100];    int score[3];};……

结构体成绩

摘要:解题思路:#include <stdio.h>struct stu{ char num[100]; char name[100]; int get[3];};void input(struct stu……

C语言,结构数组

摘要:解题思路:呃,懒得写了参考代码:#include <stdio.h>typedef struct student{    char number[10];    char name[10];    c……