• 大小: 22KB
    文件类型: .c
    金币: 2
    下载: 1 次
    发布日期: 2021-06-29
  • 语言: C/C++
  • 标签: 网吧计费  

资源简介

c语言网吧计费管理系统,经本人亲自修改,适用于各种系统平台,各种编译器,移植性强

资源截图

代码片段和文件信息

#include“stdio.h“
#include“time.h“
#include“stdlib.h“
#include“string.h“
#include“conio.h“
#include“windows.h“
struct user
{
char ID_card[40];
char user_card[10];
char user_level[100];
float add_money;
};
struct linkList
{
struct user struct_user;
struct linkList *pNext;
};
struct control
{
char control_name[20];
char control_password[15];
}control_person={“0607““12345“};
struct tm * tmptr; 
time_t secnow; 
int hour1min1a[10]={0}b[10]={0}x=0y=0;
////////////////////////////////
void enter(int n);
void tab(int n);
void start();
void login();
void mainmenu();
void h_menu();
void close();
void buy_menu();
void look_h();
void xian_shi(struct linkList *pHead);
struct linkList *adduser(struct linkList *pHead);
struct linkList *addmoney(struct linkList *pHead);
struct linkList *online(struct linkList *pHead);
struct linkList *l(struct linkList *pHead);
void save(struct linkList *pTemp);
struct linkList *readsave();
void looks(struct linkList *pHead);
void lookh(struct linkList *pHead);
/////////////////////
///////////////////
//////////////////
void start()
{ int i;
system(“cls“);
system(“title 0607“);
system(“mode con cols=100 lines=30“);
system(“color 7D“);
enter(7);
tab(4);
printf(“欢迎进入0607网吧计费系统 “);
enter(2);
tab(4);
printf(“正在加载....“);
for(i=0;i<4;i++){
Sleep(500);
printf(“\218“);
}
login();
}
//登陆函数
void login()
{
char name[20];
char password[15];
while(1)
{
system(“cls“);
enter(7);
tab(3);
printf(“             管理员登录      “);
enter(2);
tab(4);
printf(“尊姓大名:“);
fflush(stdin);
if(strcmp(gets(name)control_person.control_name)==0)
{
leap:    system(“cls“);
enter(7);
tab(3);
printf(“             管理员登录      “);
enter(2);
tab(4);
printf(“口诀:“);
fflush(stdin);
if(strcmp(gets(password)control_person.control_password)==0)
{
mainmenu();
break;
}
else
{
char ch;
tab(4);
printf(“密码错了!!!\n“);
tab(4);
printf(“要不要再输一次啊!!!?(Y/N):“);
scanf(“%c“&ch);
if(ch==‘Y‘ || ch==‘y‘)
goto leap;
else if(ch==‘N‘ || ch==‘n‘)
exit(0);
else
{
system(“cls“);
enter(7);
tab(1);
printf(“Y or N都不懂??回家抱孩子去吧!!\n“);
tab(3);
exit(0);
}
}
}

else
{
char i;
system(“cls“);
enter(7);
tab(4);
printf(“自己名字都不知道!笨啊!!\n“);
enter(3);
tab(4);
printf(“想不想再来一次机会?(Y/N):“);
scanf(“%c“&i);
if(i==‘Y‘ || i==‘y‘)
continue;
else if(i==‘N‘ || i==‘n‘)
exit(0);
else
{
system(“cls“);
enter(7);
tab(3);
printf(“Y or N都不懂??回家抱孩子去吧!!\n“);
enter(10);
exit(0);
}
}
}
}
//enter函数
void enter(int n)
{ int i;
for(i=0;i printf(“\n“);
}
//tab函数
void tab(int n)
{ int i;
for(i=0;i printf(“\t“);
}
//mainmenu主菜单
void mainmenu()
{
struct linkList *pHead=NUL

评论

共有 条评论