
C语言实现的管理系统
课程设计时写的一些管理系统,使用C语言链表写的
xjfyt
这个作者很懒,什么都没留下…
展开
-
C++实现的简单的通讯录管理系统
C++实现的简单的通讯录管理系统一、代码#include <iostream>#include <string>#include <cstring>#include <fstream>using namespace std;//自定义一个联系人结点类型typedef struct node1{ string name; //姓名 string tel; //手机号 string emai原创 2021-03-09 10:20:14 · 463 阅读 · 0 评论 -
C语言实现校运动会项目管理系统
//源码#include<stdio.h>#include<stdlib.h>#include<string.h>//定义一个结构体typedef struct project{ char xiangmu[40]; //比赛项目名称 char name[10][40]; //学院名称 float score[10]; //单项成绩 int no原创 2020-06-14 15:55:37 · 14667 阅读 · 6 评论 -
C语言链表实现销售管理系统
//源码#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct sale{ char no[12]; //代号 char name[40]; //姓名 int month[12]; //月份 float sales[12]; //月销售额 float total;原创 2020-06-14 15:52:57 · 1979 阅读 · 0 评论 -
C语言链表实现考试报名管理系统
完整版//源码#include<stdio.h>#include<stdlib.h>#include<string.h>//定义一个考生结构体typedef struct student{ char name[40]; char no[18]; int xb; int age; char tele[20]; struct student *next;}STU;//函数声明放在这里STU *LIstIn原创 2020-06-14 15:49:17 · 8819 阅读 · 9 评论 -
C语言用链表实现学生籍贯管理系统
C语言用链表实现学生籍贯管理系统//源码#include<stdio.h>#include<stdlib.h>#include<string.h>//定义一个学生结构体typedef struct student{ char no[12]; //学号 char name[40]; //姓名...原创 2020-06-14 15:36:39 · 2670 阅读 · 6 评论 -
C语言链表实现工资管理系统
自己的作业,分享一下,自己为了调试方便,又多加入了一些功能题目;建立工资管理系统,对职工工资的相关信息进行管理。职工工资相关信息包括职工工号,职工姓名,月份,每月工资和年度总工资等,具体要求如下;1、建立该系统的存储结构2、录入职工某个月的工资3、查找某个职工某个月的工资4、修改某个职工某个月的工资5、删除每个职工的工资相关信息6、统计某个职工年度总工资7、对职工的月工资或年度总工...原创 2020-06-14 15:36:20 · 4986 阅读 · 0 评论 -
C语言链表实现商品库存管理系统
//代码:#include <stdio.h>#include <stdlib.h>#include <string.h>//定义一个商品结构体typedef struct sp{ char no[12]; //商品编号 char name[40]; //名称 int workload; //库存量 struct sp *next; //指向下一节点的指针} SP;//函数声明放在这里void Lis原创 2020-06-14 15:35:58 · 11340 阅读 · 4 评论 -
C语言非链表实现学生信息管理系统
C语言写的学生报名管理系统//代码#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int temp, hh;typedef struct{ char stu_name[40]; //姓名 int stu_id; //学号 ch...原创 2020-04-11 18:51:26 · 2336 阅读 · 0 评论