一個簡單的學生成績管理程序

#include<stdlib.h> #include<stdio.h> struct list{    int num;    char name[256];    int china;    int english;    int math;    struct list *next; }; typedef struct list node; typedef node *link; print
相關文章
相關標籤/搜索