-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemo.java
800 lines (677 loc) · 21.4 KB
/
Demo.java
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
import java.util.*;
class Student{
String StId;
String StName;
int PRFMarks;
int DBMSMarks;
int TotalMarks;
double AvgMarks;
public boolean SearchID(Student[] ar, String STID){
boolean b=false;
for (int i = 0; i < ar.length; i++){
if(STID.equalsIgnoreCase(ar[i].StId)){
b=true;
break;
}
}
return b;
}
public void CalMarks(){
TotalMarks=PRFMarks+DBMSMarks;
AvgMarks=(double)TotalMarks/2;
}
public int GetIndex(Student[] ar,String STID){
int index=0;
for (int i = 0; i <ar.length ; i++){
if(STID.equalsIgnoreCase(ar[i].StId)){
index=i;
break;
}
}
return index;
}
public boolean SearchMarksAdded(){
if(this.PRFMarks==-1){
return false;
}
return true;
}
public void PrintStudentName(){
System.out.print("Student Name : "+StName);
}
public void PrintStudentDetails(){
System.out.println("Student ID : "+StId);
System.out.println("Student Name : "+StName);
}
public void PrintStudentMarks(){
System.out.println("PRF Marks : "+PRFMarks);
System.out.println("DBMS Marks : "+DBMSMarks);
}
public void PrintStudentSUBMarks(){
System.out.println("Total Marks : "+TotalMarks);
System.out.println("Average Marks : "+AvgMarks);
}
public void UpdateStudentName(String temp){
this.StName=temp;
}
public void AddStudent(String StId, String StName){
this.StId=StId;
this.StName=StName;
PRFMarks=-1;
DBMSMarks=-1;
}
public void AddStudentWithMarks(String StId, String StName, int PRFMarks, int DBMSMarks){
this.StId=StId;
this.StName=StName;
this.PRFMarks=PRFMarks;
this.DBMSMarks=DBMSMarks;
}
public Student GetAddress(){
return this;
}
public static void SortMarks(Student[] ar){
for (int i = 0; i < ar.length; i++){
ar[i].CalMarks();
}
for (int i = ar.length-1; i >=0 ; i--){
for (int j = 0; j < i; j++){
if(ar[j].TotalMarks>ar[j+1].TotalMarks){
Student temp=ar[j+1];
ar[j+1]=ar[j];
ar[j]=temp;
}
}
}
}
public static void SortMarksPRF(Student[] ar){
for (int i = 0; i < ar.length; i++){
ar[i].CalMarks();
}
for (int i = ar.length-1; i >=0 ; i--){
for (int j = 0; j < i; j++){
if(ar[j].PRFMarks>ar[j+1].PRFMarks){
Student temp=ar[j+1];
ar[j+1]=ar[j];
ar[j]=temp;
}
}
}
}
public static void SortMarksDBMS(Student[] ar){
for (int i = 0; i < ar.length; i++){
ar[i].CalMarks();
}
for (int i = ar.length-1; i >=0 ; i--){
for (int j = 0; j < i; j++){
if(ar[j].DBMSMarks>ar[j+1].DBMSMarks){
Student temp=ar[j+1];
ar[j+1]=ar[j];
ar[j]=temp;
}
}
}
}
}
//------------------Main Method-------------------------
class Demo{
static Student[] Array=new Student[0];
public static void main(String args[]){
do{
method();
}while(true);
}
//----------------------Select Method--------------------------
public static void method(){
Scanner input=new Scanner(System.in);
Startpage();
String option=input.nextLine();
switch(option){
case "1" : AddStudent(); break;
case "2" : AddnewStudentwithMarks(); break;
case "3" : AddMarks(); break;
case "4" : UpdateStudentDetails(); break;
case "5" : UpdateMarks(); break;
case "6" : DeleteStudent(); break;
case "7" : PrintSTDetails(); break;
case "8" : PrintSTRanks(); break;
case "9" : BestinPRF(); break;
case "10" : BestinDBMS(); break;
default : System.out.println("Enter Correct Option : ");
}
}
//-----------------------Startpage-------------------------------
public static void Startpage(){
Scanner input=new Scanner(System.in);
Print("WELCOME TO GDSE MANAGEMENT SYSTEM");
System.out.println("\n");
System.out.println("[1] Add New Student\t\t\t\t\t[2] Add New Student with Marks");
System.out.println("[3] Add Marks\t\t\t\t\t\t[4] Update Student Details");
System.out.println("[5] Update Marks\t\t\t\t\t[6] Delete Student");
System.out.println("[7] Print Student Details\t\t\t\t[8] Print Student Ranks");
System.out.println("[9] Best in Programming Fundementals\t\t\t[10] Best in Database Management System");
System.out.print("\nEnter an option to Continue > ");
}
//----------------------Method 1 AddStudent----------------------------------
public static void AddStudent(){
Scanner input=new Scanner(System.in);
Print("ADD NEW STUDENT");
L1:do{ System.out.print("\n\nEnter Student ID : ");
String STID=input.nextLine(); // get student id
Student temp=new Student();
if(temp.SearchID(Array,STID)){
System.out.print("\nThe Student ID alrady exists\n");
L2:do{ System.out.print("Do you want to add Student ( Y/N ) ");
String op=input.nextLine();
if(op.equalsIgnoreCase("Y")){
continue L1;
}else if(op.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Plese Enter Valid Option! ");
continue L2;
}
}while(true);
}else{
System.out.print("Enter Student Name : ");
String StName=input.nextLine(); // get Student name
temp.AddStudent(STID,StName);
Student[] tempAr=new Student[Array.length+1];
for (int i = 0; i < Array.length; i++){
tempAr[i]=Array[i];
}
tempAr[tempAr.length-1]=temp;
Array=tempAr;
System.out.print("\nStudent has been added successfully. Do you want to add a new student (Y/N) : ");
L3:do{ String YN=input.nextLine();
char option=YN.charAt(0);
if (option=='Y'){
continue L1;
}else if(option=='y'){
continue L1;
}else if(option=='N'){
break L1;
}else if(option=='n'){
break L1;
}else{
System.out.print("Enter Valid Option! Do you want to add a new student (Y/N) : ");
continue L3;
}
}while(true);
}
}while(true);
}
//----------------------Method 2 AddStudent with Marks----------------------------------
public static void AddnewStudentwithMarks(){
Scanner input=new Scanner(System.in);
Print("ADD STUDENT WITH MARKS");
L1:do{ System.out.print("\n\nEnter Student ID : ");
String STID=input.nextLine(); // get student id
Student temp=new Student();
if(temp.SearchID(Array,STID)){
System.out.print("\nThe Student ID alrady exists\n");
L2:do{ System.out.print("Do you want to add Student ( Y/N ) ");
String op=input.nextLine();
if(op.equalsIgnoreCase("Y")){
continue L1;
}else if(op.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Plese Enter Valid Option! ");
continue L2;
}
}while(true);
}else{
System.out.print("Enter Student Name : ");
String StName=input.nextLine(); // get Student name
int PRF,DBMS;
L2:do{ System.out.print("\nEnter PRF Marks : "); // get PRF marks
PRF=input.nextInt();
if(PRF>100 || PRF<0){
System.out.print("\nInvalid Marks. Please Enter Correct Marks : ");
continue L2;
}
L3:do{ System.out.print("Enter DBMS Marks : "); // get DBMS marks
DBMS=input.nextInt();
input.nextLine();
if(DBMS>100 || DBMS<0){
System.out.print("\nInvalid Marks. Please Enter Correct Marks : \n");
continue L3;
}
break L2;
}while(true);
}while(true);
temp.AddStudentWithMarks(STID,StName,PRF,DBMS);
Student[] tempAr=new Student[Array.length+1];
for (int i = 0; i < Array.length; i++){
tempAr[i]=Array[i];
}
tempAr[tempAr.length-1]=temp;
Array=tempAr;
System.out.print("\nStudent has been added successfully. Do you want to add a new student (Y/N) : ");
L3:do{ String YN=input.nextLine();
char option=YN.charAt(0);
if (option=='Y'){
continue L1;
}else if(option=='y'){
continue L1;
}else if(option=='N'){
break L1;
}else if(option=='n'){
break L1;
}else{
System.out.print("Enter Valid Option! Do you want to add a new student (Y/N) : ");
continue L3;
}
}while(true);
}
}while(true);
}
//------------------------------Method 3 Add Marks--------------------
public static void AddMarks(){
Scanner input=new Scanner(System.in);
Print("ADD MARKS");
L1: do{ System.out.print("\nEnter Student ID : ");
String STID = input.nextLine();
Student temp=new Student();
if(temp.SearchID(Array,STID)==false){
System.out.print("Invalid Student ID. Do you want to Search agin ( Y/N ) ");
L2:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L2;
}
}while(true);
}else{
int index=temp.GetIndex(Array,STID);
temp=Array[index];
System.out.print("Student Name : "+temp.StName);
if(temp.PRFMarks!=-1){
System.out.print("\n\nThis student marks already added.\nIf you want to update the marks. please use [5] Update marks option.\n\nDo you want to add marks for another student? (Y/N) ");
L3:do{ String op2=input.nextLine();
if(op2.equalsIgnoreCase("Y")){
continue L1;
}else if(op2.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L3;
}
}while(true);
}else{
L5:do{ System.out.print("\n\nEnter PRF marks : ");
int PRF=input.nextInt();
if(PRF>100 || PRF<0){
System.out.print("Invalid Marks. Please enter correct Marks.\n");
continue L5;
}else{
temp.PRFMarks=PRF;
break L5;
}
}while(true);
L6:do{ System.out.print("Enter DBMS marks : ");
int DBMS=input.nextInt();
if(DBMS>100 || DBMS<0){
System.out.print("Invalid Marks. Please enter correct Marks.\n\n");
continue L6;
}else{
temp.DBMSMarks=DBMS;
break L6;
}
}while(true);
input.nextLine();
System.out.print("Marks have been Added. do you want to add marks for another Student ( Y/N ) ");
L4:do{ String op4=input.nextLine();
if(op4.equalsIgnoreCase("Y")){
continue L1;
}else if(op4.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. do you want to add marks for another Student ( Y/N ) ");
continue L4;
}
}while(true);
}
}
}while(true);
}
//--------------------------method 4 - Update student details-----------------
public static void UpdateStudentDetails(){
Scanner input=new Scanner(System.in);
Print("UPDATE STUDENT DETAILS");
L1: do{
System.out.print("\nEnter Student ID : ");
String STID = input.nextLine();
Student temp=new Student();
if(temp.SearchID(Array,STID)==false){
System.out.print("Invalid Student ID. Do you want to Search agin ( Y/N ) ");
L2:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L2;
}
}while(true);
}else{
int index=temp.GetIndex(Array,STID);
temp=Array[index].GetAddress();
temp.PrintStudentName();
System.out.print("\n\nEnter new Student Name : ");
String NewStName=input.nextLine();
temp.UpdateStudentName(NewStName);
System.out.print("\nStudent details has been update sucessfully.\nDo you want to update another student details ( Y/N ) ");
L3:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("\nEnter Valid Option. Do you want to update another student details ( Y/N ) ");
continue L3;
}
}while(true);
}
}while(true);
}
//----------------------------------Method 5 - Update marks------------------
public static void UpdateMarks(){
Scanner input=new Scanner(System.in);
Print("UPDATE MARKS");
L1: do{
System.out.print("\nEnter Student ID : ");
String STID = input.nextLine();
Student temp=new Student();
if(temp.SearchID(Array,STID)==false){
System.out.print("Invalid Student ID. Do you want to Search agin ( Y/N ) ");
L2:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L2;
}
}while(true);
}else{
int index=temp.GetIndex(Array,STID);
temp=Array[index];
if(temp.PRFMarks==-1){
System.out.print("This Student Marks yet to be added.\nDo you want to update marks for another Student (Y/N) ");
L3:do{
String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L3;
}
}while(true);
}else{
temp.PrintStudentDetails();
temp.PrintStudentMarks();
L4:do{
System.out.print("\nEnter New PRF Marks : ");
int PRF=input.nextInt();
if(PRF>100 || PRF<0 ){
System.out.print("\nInvalid Marks. Please Enter Correct Marks. \n");
continue L4;
}else{
temp.PRFMarks=PRF;
break L4;
}
}while(true);
L5:do{
System.out.print("Enter New DBMS Marks : ");
int DBMS=input.nextInt();
input.nextLine();
if(DBMS>100 || DBMS<0 ){
System.out.print("\nInvalid Marks. Please Enter Correct Marks. \n");
continue L5;
}else{
temp.DBMSMarks=DBMS;
System.out.print("\nMarks have been updated Successfully.\nDo you want to update marks for another Student ( Y/N ) ");
L6:do{
String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L6;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to update marks for another Student ( Y/N ) ");
continue L6;
}
}while(true);
}
}while(true);
}
}
}while(true);
}
//--------------------------------------- Method 6 - Delete Student -------------------
public static void DeleteStudent(){
Scanner input=new Scanner(System.in);
Print("DELETE STUDENT");
L1: do{
System.out.print("\nEnter Student ID : ");
String STID = input.nextLine();
Student temp=new Student();
if(temp.SearchID(Array,STID)==false){
System.out.print("Invalid Student ID. Do you want to Search agin ( Y/N ) ");
L2:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L2;
}
}while(true);
}else{
int index=temp.GetIndex(Array,STID);
temp=Array[index];
System.out.println();
temp.PrintStudentDetails();
L3:do{
System.out.print("\nDo you want to Delete this Student ( Y/N ) ");
String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
Student[] tempAr=new Student[Array.length-1];
for (int i = 0; i <index ; i++){
tempAr[i]=Array[i];
}
for (int i = index; i <tempAr.length ; i++){
tempAr[i]=Array[i+1];
}
Array=tempAr;
System.out.print("\nStudent has been delete successfully.\nDo you want to delete another Student ( Y/N ) ");
L4:do{
String op2=input.nextLine();
if(op2.equalsIgnoreCase("Y")){
continue L1;
}else if(op2.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to delete another Student ( Y/N ) ");
continue L4;
}
}while(true);
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option.\n");
continue L3;
}
}while(true);
}
}while(true);
}
//----------------------------Method 7 Print Student Details-----------------
public static void PrintSTDetails(){
Scanner input=new Scanner(System.in);
Print("PRINT STUDENT DETAILS");
L1: do{
System.out.print("\nEnter Student ID : ");
String STID = input.nextLine();
Student temp=new Student();
if(temp.SearchID(Array,STID)==false){
System.out.print("Invalid Student ID. Do you want to Search agin ( Y/N ) ");
L2:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L2;
}
}while(true);
}else{
int index=temp.GetIndex(Array,STID);
temp=Array[index];
System.out.println();
temp.PrintStudentDetails();
if(temp.SearchMarksAdded()==false){
System.out.print("\n\nMarks yet to be added.\nDo you want to Search agin ( Y/N ) ");
L3:do{
String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L3;
}
}while(true);
}else{
temp.PrintStudentMarks();
temp.CalMarks();
temp.PrintStudentSUBMarks();
temp.SortMarks(Array);
index=temp.GetIndex(Array,STID);
System.out.print("Rank : "+(Array.length-index));
System.out.print(Array.length-index==1? " ( First )" : Array.length-index==2? " ( Second )" : Array.length-index==3? " ( Third )" : "");
System.out.print("\n\nDo you want to Search agin ( Y/N ) ");
L4:do{ String op1=input.nextLine();
if(op1.equalsIgnoreCase("Y")){
continue L1;
}else if(op1.equalsIgnoreCase("N")){
break L1;
}else{
System.out.print("Enter Valid Option. Do you want to Search agin ( Y/N ) ");
continue L4;
}
}while(true);
}
}
}while(true);
}
//------------------------Method 8 - Print Student Ranks---------------
public static void PrintSTRanks(){
Scanner input=new Scanner(System.in);
Print("PRINT STUEDNTS' RANK");
Student temp=new Student();
temp.SortMarks(Array);
System.out.print("\n\n|Rank|\t\t"+"|ID|\t\t"+"|Name|\t\t"+"|Total Marks|\t\t"+"|Average Marks|\n");
for (int i = Array.length-1,j=1; i >= 0; i--,j++){
if(Array[i].PRFMarks==-1){
break;
}else{
System.out.println(j+"\t\t"+Array[i].StId+"\t\t"+Array[i].StName+"\t\t\t"+Array[i].TotalMarks+"\t\t\t"+Array[i].AvgMarks);
}
}
do{
System.out.print("\nDo you want to go back main menu ( Y/N ) ");
String op=input.nextLine();
if(op.equalsIgnoreCase("Y")){
break;
}else{
continue;
}
}while(true);
}
//----------------------------- Method 9 - Best in Programming Fundemental-------------------
public static void BestinPRF(){
Scanner input=new Scanner(System.in);
Print("BEST IN PROGRAMMING FUNDEMENTALS");
Student temp=new Student();
System.out.print("\n\n|ID|\t\t"+"|Name|\t\t"+"|PRF Marks|\t\t|"+"DBMS Marks|\n");
temp.SortMarksPRF(Array);
for (int i = Array.length-1; i >=0 ; i--){
if(Array[i].PRFMarks==-1){
break;
}else{
System.out.println(" "+Array[i].StId+"\t\t "+Array[i].StName+"\t\t "+Array[i].PRFMarks+"\t\t\t "+Array[i].DBMSMarks);
}
}
do{
System.out.print("\nDo you want to go back main menu ( Y/N ) ");
String op=input.nextLine();
if(op.equalsIgnoreCase("Y")){
break;
}else{
continue;
}
}while(true);
}
//----------------------------- Method 10 - Best in Database Managment System-------------------
public static void BestinDBMS(){
Scanner input=new Scanner(System.in);
Print("BEST IN DATABASE MANAGEMENT SYSTEM");
Student temp=new Student();
System.out.print("\n\n|ID|\t\t"+"|Name|\t\t"+"|DBMS Marks|\t\t|"+"PRF Marks|\n");
temp.SortMarksDBMS(Array);
for (int i = Array.length-1; i >=0 ; i--){
if(Array[i].DBMSMarks==-1){
break;
}else{
System.out.println(" "+Array[i].StId+"\t\t "+Array[i].StName+"\t\t "+Array[i].DBMSMarks+"\t\t\t "+Array[i].PRFMarks);
}
}
do{
System.out.print("\nDo you want to go back main menu ( Y/N ) ");
String op=input.nextLine();
if(op.equalsIgnoreCase("Y")){
break;
}else{
continue;
}
}while(true);
}
//-------------------------Console Clear-----------------------------
public final static void clearConsole() {
try {
final String os = System.getProperty("os.name");
if (os.contains("Windows")) {
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
} else {
System.out.print("\033[H\033[2J");
System.out.flush();
}
}catch (final Exception e) {
e.printStackTrace();
}
}
//--------------------------PAGE VIEW-----------
public static void Print(String text){
clearConsole();
Scanner input=new Scanner(System.in);
for (int i = 0; i < 100; i++){
System.out.print("-");
}
System.out.print("\n\t\t|\t\t"+text+"\t\t|\n");
for (int i = 0; i < 100; i++){
System.out.print("-");
}
}
}