
C语言编程
Coolstuz
什么也不会,但又都会点
展开
-
C语言:基于单向循环链表的学生管理系统的增删改查排序
#include <stdio.h>#include <stdlib.h>#include <conio.h>#include <string.h>typedef struct Student //定义结构体{ long num; //学号 char name[20]; //姓名 char sex; //性别 float Chinese; .原创 2021-10-04 20:51:15 · 200 阅读 · 0 评论 -
C语言:基于单向链表的学生管理系统的增删改查排序
#include <stdio.h>#include <stdlib.h>#include <conio.h>#include <string.h>#include <malloc.h> //基于链表的学生管理系统typedef struct Student //定义结构体{ long num;.原创 2021-10-04 20:48:00 · 573 阅读 · 0 评论 -
C语言:基于数组的学生管理系统的增删改查排序
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <conio.h>#define N 9999int n,c; //设置全局变量 //基于数组的学生管理系统struct school //建立结构体{ char num[20]; char nam.原创 2021-10-04 20:31:30 · 1312 阅读 · 0 评论