This document was ed by and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this report form. Report r6l17
<
<<endl; p++; } question(n); return 0; } //___________________________________________________________________________ //___________________________________________________________________________
rank2(int n) // Function to sort players according to their bowling average { clrscr(); cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n"; cout<<"\n\n\t\tBOWLING RANKINGS:"; int tmp,small,pos,p=1; for(int l=1;l<=n;l++) { small=b[l].avg2; pos=l; for(int k=l+1;k<=n;k++ ) { if(b[k].avg2<small) { small=b[k].avg2; pos=k; } } c=b[l]; b[l]=b[pos]; b[pos]=c; } for(int i=1;i<=n;i++) { cout<<"\n\n\t"<
<
<<endl; p++; } question(n); return 0; } //___________________________________________________________________________ //___________________________________________________________________________ void rank(int n) // Function to view ranks { clrscr(); int y; cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*"; cout<<"\t\tWHICH RANKINGS DO U WANT TO SEE:"; cout<<"\n\n\n\tEnter 1 for batting rankings:"; cout<<"\n\tEnter 2 for bowling rankings:"; cout<<"\n\n\n\tEnter your choice:"; cin>>y; switch(y) { case 1:rank1(n); case 2:rank2(n); } } //___________________________________________________________________________ //___________________________________________________________________________ del(int n) // Function to delete a player { clrscr(); sort(n); int g; cout<<"Enter the sno of the player u want to drop:";
cin>>g; for(int i=g;i<=n;i++) { b[i]=b[i+1]; } int f,m; m=n-1; cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*"; cout<<"\n\tDo u want to see the list of players again"; cout<<"\n\n\tpress 1 to see \n\tpress 2 if u dont "; cout<<"\n\tpress 3 to delete another record"; cin>>f; switch(f) { case 1:display(m); case 2:question(n); case 3:del(m); } } //___________________________________________________________________________ //___________________________________________________________________________ void update(int n) // Function to update players info { sort(n); cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n"; cout<<"Which player's(sno) details do u want to update"; int t; cin>>t; cout<<"\n Following are the details of player chosen\n\n"; cout<<"\n\n\tS No.\t"<
<<endl; cout<<"\tNAME:\t"<
<<"\n\tRUNS SCORED:\t"<
>b[t].runs; cout<<"\n\t\tCENTURIES:\t"; cin>>b[t].cent; cout<<"\n\t\tAVERAGE:\t"; cin>>b[t].avg; cout<<"\n\t\tBOWLING AVERAGE:\t"; cin>>b[t].avg2; cout<<"\n\t\tWICKETS:\t"; cin>>b[t].wic; question(n); } //___________________________________________________________________________ //___________________________________________________________________________ void menu2(int n) // Function to display menu { clrscr(); int a; cout<<" *=*=*=*=*=*=*=*=*=*=*=|ICT MANAGEMENT SYSTEM|*=*=*=*=*=*=*=*=*=*=*"; cout<<"\n\n\n\t 1.Enter 1 to see the list of all team ";
cout<<"\n\t 2.Enter 2 to see the details of a player"; cout<<"\n\t 3.Enter 3 to see the rankings"; cout<<"\n\t 4.Enter 4 to delete a Player"; cout<<"\n\t 5.Enter 5 update a players details"; cout<<"\n\t 6.Enter 6 to exit"; cout<<"\n\n\n\n\t Enter your choice:"; cin>>a; switch(a) { case 1:display(n); break; case 2:details(n); break; case 3:rank(n); break; case 4:del(n); case 5:update(n); case 6:break; default:cout<<"\n\n\t\twrong choice"; } getch(); } //___________________________________________________________________________ //___________________________________________________________________________ void menu1() { clrscr(); int s; // Function to display menu cout<<" *=*=*=*=*=*=*=*=*=*=*=|WELCOME TO ICT MANAGEMENT SYSTEM|*=*=*=*=*=*=*=*=*=*=*"; cout<<"\n\nEnter the number of selected players:"; cin>>s; cout<<"\n\nPress any key to Continue"; getch(); enter(s); getch(); } //___________________________________________________________________________ //___________________________________________________________________________ void question(int n) // Function to display menu { cout<<"\n\n\n"; int e; cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*"; cout<<"\n\tEnter 1 for returning to the menu."; cout<<"\n\tEnter 2 to exit."; cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*"; cout<<"\n\n\tEnter your choice :"; cin>>e; switch(e) { case 1:menu2(n); case 2:cout<<" Thank you "; break; } } //___________________________________________________________________________
//___________________________________________________________________________ void main() { menu1(); } //___________________________________________________________________________ //___________________________________________________________________________
For our project we have taken help from following sources 1) COMPUTER SCIENCE WITH C++ BY SUMITA ARORA
2) INTERNET - CRICKET.YAHOO.COM