2 Star 0 Fork 0

树__/Students Management System

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
树__ 提交于 2013-09-07 19:49 . make it
/*************************************************
File name : main.c
Description : 主文件,main函数
Others : Null
Function : 1. 用户界面
2. 其他函数的调用
History : 2013-6-26 Gongpei 创建
Copyright (C), 2013-2014, Gongpei
*************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "main.h" //主头文件
#include "shu.h" //自用头文件,包含一些自行编写的常用函数,详情见文件内注释
#include "md5.h" //md5加密
char userType = VISITOR; //默认游客
int main(int argc, char *argv[])
{
//设置程序背景色和前景色
system( "color 1F" );
while( 1 )
{
switch( userType )
{
case 0 : loginForm(); //登录框
break;
case 1 : adminMain(); //管理员权限 可查询修改记录
break;
case 2 : guestMain(); //来宾权限 只可查询记录
break;
default : exit(0);
}
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ggongpei/students-management-system.git
git@gitee.com:ggongpei/students-management-system.git
ggongpei
students-management-system
Students Management System
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385