首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴静战者的代码贴全部
#include<stdio.h>
#include<stdlib.h>
typedef struct student
{
int xuehao;
char name[4];
int point1;
int point2;
int point3;
struct student *next;
}Linklists;
main()
......................
阅读全部 | 2021年12月21日 15:57
1
静战者