修复了已知问题

This commit is contained in:
john jones 2024-12-17 07:09:59 +08:00
parent 0fbfe6b358
commit 9ba530e0f8
65 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#include<bits/stdc++.h> #include<bits/stdc++.h>
#include "./lib/user.h" #include "user.h"
using namespace std; using namespace std;
int main() { int main() {
boot(); boot();

View File

@ -42,12 +42,10 @@ int boot() {
if(!status){ if(!status){
cout << "False Login!" << endl; cout << "False Login!" << endl;
system("PAUSE");
return 0; return 0;
} }
else{ else{
cout << "Succesfully Logined in!" << endl; cout << "Succesfully Logined in!" << endl;
system("PAUSE");
return 1; return 1;
} }
} }

View File