You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
470 B
25 lines
470 B
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <conio.h>
|
|
#include <windows.h>
|
|
#include "BOOKUI.h"
|
|
#include "user.h"
|
|
|
|
int main()
|
|
{
|
|
HideCursor();
|
|
choice = 0;
|
|
setcolor(11,0);
|
|
Settitle("|学生选课系统|");
|
|
system("mode con cols=180 lines=50");
|
|
player();
|
|
system("mode con cols=105 lines=30");
|
|
|
|
showtitle();
|
|
HideCursor();
|
|
login1();//登录或注册的选择界面(进入程序的第一步)
|
|
return 0;
|
|
}
|
|
|