修复了已知问题
This commit is contained in:
parent
0fbfe6b358
commit
9ba530e0f8
2
main.cpp
2
main.cpp
|
@ -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();
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue