-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
34 lines (32 loc) · 925 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include<bits/stdc++.h>
using namespace std;
#include "Classes/College.h"
#include "Classes/util.h"
#include "Classes/Program.h"
#include "Classes/programRecord.h"
#include "Classes/Student.h"
#include "Classes/studentRecord.h"
#include "Classes/Allocation.h"
#include "Classes/Home.h"
int main(){
system("clear");
system("chmod +x run.sh");
system("./run.sh");
system("sleep 1");
system("clear");
cout << "\n\n\n\n\n\n\n\n\n\n\n";
cout << "\t\t\t General Seat Allocation" << endl;
cout << "\t\t||------------------------------------------------||" << endl;
system("sleep 1");
cout << "\t\t\t Made by:" << endl;
system("sleep 1");
cout << "\t\t\t\t\t Gautam Mishra" << endl;
system("sleep 1");
cout << "\t\t\t\t\t Ashutosh Kabra" << endl;
system("sleep 1");
cout << "\t\t\t\t\t Archit" << endl;
system("sleep 2");
system("clear");
displayMain();
return 0;
}