当前位置:网站首页>C 学生管理系统_分析
C 学生管理系统_分析
2022-08-04 00:38:00 【joker_0030】
#include<stdio.h>
#include<stdlib.h>
//学生节点。
typedef struct _STU
{
char arrStuNum[10];
char srrStuName[10];
int iStuScore;
struct _STU* pNext;//指向下一个节点。
}STUNODE;
int main()
{
int nOrder=-1;
printf("*******************学生管理系统******************\n");
printf("******************系统操作指令如下****************\n");
printf("***1、增加一个学生信息***\n");
printf("***2、查找指定学生信息(姓名/学号)***\n");
printf("***3、修改指定学生的信息***\n");
printf("***4、保存业主的信息到文件***\n");
printf("***5、读取文件中的业主信息***\n");
printf("***6、删除指定学生的信息***\n");
printf("***7、恢复删除的学生信息***\n");
printf("***8、显示所有学生信息***\n");
printf("***9、退出系统***\n");
printf("*****************************************************\n");
scanf("%d", nOrder);
switch ()
{
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
break;
case 6:
break;
case 7:
break;
case 8:
break;
case 9:
break;
default:
printf("输入的指令不对");
break;
}
system("pause");
return 0;
}
win32项目创建:
单击文件 (File)->新建 (New)->项目 (Project)
选择新建 Windows 桌面向导 (Windows Desktop Wizard) 项目类型
配置选项:应用程序类型选择 桌面应用程序 (.exe) (Desktop Application (.exe)) ,其它选项勾选 空项目 (Empty project)
边栏推荐
- SQL优化的一些建议,希望可以帮到和我一样被SQL折磨的你
- 114. How to find the cause of Fiori Launchpad routing error by single-step debugging
- .NET静态代码织入——肉夹馍(Rougamo) 发布1.1.0
- 越来越火的图数据库到底能做什么?
- typescript56-泛型接口
- LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
- Justin Sun was invited to attend the 36氪 Yuan Universe Summit and delivered a keynote speech
- LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
- typescript58 - generic classes
- 微服务的简单介绍
猜你喜欢
随机推荐
RSS订阅微信公众号初探-feed43
vxe-table 从页面批量删除数据 (不动数据库里的数据)
C # WPF equipment monitoring software (classic) - the next
The problem of disorganized data output by mnn model
[Miscellaneous] How to install the specified font into the computer and then use the font in the Office software?
typescript54-泛型约束
越来越火的图数据库到底能做什么?
求解同余方程 数论 扩展欧几里得
高斯推断推导
BioVendor人Clara细胞蛋白(CC16)Elisa试剂盒检测步骤
手撕Nacos源码,今日撕服务端源码
typescript58 - generic classes
MPLS综合实验
Web3 安全风险令人生畏?应该如何应对?
Install third-party packages via whl
typescript57-数组泛型接口
It will invest about 200 billion US dollars in the United States in 20 years, and Samsung Electronics looks so handsome
C# wpf使用ffmpeg命令行实现录屏
Eight things to pay attention to in spot silver
typescript56-泛型接口









