SR.
TOPIC
PAGE NO.
NO
TEACHER’S SIGN
1
CERTIFICATE
iii
2
ACKNOWLEDGEMENT
iv
3
ABOUT THE PROJECT
v
4
PROGRAM
v
5
OUTPUT SCREENSHOTS
xii
6
BIBLIOGRAPHY
xiv
This is to certify that Anuj Gupta, of Class XII B, Roll No. 5, has successfully completed the project work titled
And that this project is the record of authentic work carried out during the academic year (2015-2016). He has completed the project work under computer department under direct supervision of undersigned as per the requirement of The Board Examination.
Student’s Sign
External ’s Sign
Teacher’s Sign
Principal ’s Sign
I would like to express my special thanks of gratitude to my Computer Science teacher Mrs. Deepti Sahu as well as our Principal Mrs. Bharti Bhagwani, for their vital support, guidance and encouragement - without which this project would not have come forth. They also gave me the golden opportunity to do this wonderful project which helped me in doing a lot of Research. I am really thankful to them .
This project uses the concept of data file handling and other concepts of “object oriented programming”. Its Aim is to co llect various vital data about players like runs scored, average, centuries etc. This project helps to store data in a very compact easily accessible way instead of storing data in huge bulks of files.
*********************************************
// ICT Management System //Version 1.0 Beta release(Updated) //Developed by: #include
#include #include struct data { int sno; char name[20]; float avg; // Average int runs; int cent; // Centuary int wic; // Wickets float avg2; }b[20],c,d; void menu2(int n); void question(int n); //___________________________________________________________________________
//___________________________________________________________________________ void sort(int n) { int tmp,small,pos; for(int l=1;l<=n;l++) { small=b[l].sno; pos=l; for(int k=l+1;k<=n;k++ ) { if(b[k].sno>b[i].sno; cout<>b[i].runs; cout<<"\n\tCENTURIES:"; cin>>b[i].cent; cout<>b[i].avg; cout<<"\n\tWICKETS:"; cin>>b[i].wic; cout<>b[i].avg2; cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*";} menu2(n); } //___________________________________________________________________________ //___________________________________________________________________________ void display(int n) // Function to display Selected players { sort(n); cout<<" \n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n"; cout<<"\t\tLIST OF INDIAN PLAYERS:"; for(int i=1;i<=n;i++)
{ cout<<"\n\tS No."<>x; cout<<"\n\tS No.\t"<=1;i--) { cout<<"\n\n\t"<
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>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"<>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 members";
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