
c
文章平均质量分 50
visual_eagle
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
基于c语言程序设计图书管理系统
#include<stdio.h>#include<conio.h>#include<stdlib.h>#include<string.h>struct book_type{ char num[15]; char name[10]; float price;}; struct book_type bo...原创 2020-05-08 14:54:47 · 1830 阅读 · 0 评论 -
基于c语言设计学生管理系统
#include<stdio.h>#include<stdlib.h>#include<string.h>//创建学生结构struct stu_type{ char num[15];//学生学号 char name[10];//学生姓名 char gender[10];//学生性别 int dormitory_num;//学生宿舍号 char...原创 2020-04-22 21:34:46 · 2748 阅读 · 3 评论