Report Card Management
Report Card Management
• 1. CERTIFICATE
2. ACKNOWLEDGEMENT
3. INTRODUCTION
4. SYSTEM REQUIREMENTS
5. HEADER FILES
• 6. Coding
7. OUTPUT
8. LIMITATIONS
9. BIBLIOGRAPHY
Certificate
•
( Mr.Dalakoti sir )
•
pgt of computer sci
ACKNOWLEDGEMENT
• I would like to express a deep sense of
thanks and gratitude to my guide
Mr Dalakoti sir for guiding me
immensely through the course of my
project . He always evinced keen interst
in my work.
• His constructive advice and constant
motivation have been responsible for
the successful completion of this project
INTRODUCTION
• Student report card system project in C++ is a
simple console application built without the use of
graphics. This project student report card system
help in managing the record of students according
to their roll no. In this project we tried to enter
all details of students like roll no, name, marks in
all five subjects, etc. and tried to maintain all the
possibility which may help the user to enter more
record if he requires.
• //***************************************************************
• // function to display result menu
• //****************************************************************
•
• void result()
• {
• char ch;
• int rno;
• cout<<"\n\n\n\tRESULT MENU";
• cout<<"\n\n\n\t1. Class Result";
• cout<<"\n\n\t2. Student Report Card";
• cout<<"\n\n\t3. Back to Main Menu";
• cout<<"\n\n\n\tEnter Choice (1/2/3)? ";
• cin>>ch;
• clrscr();
• switch(ch)
• {
• case '1' : class_result(); break;
• case '2' : cout<<"\n\n\tEnter Roll Number Of Student : ";
cin>>rno;
• display_sp(rno); break;
• //*******************************************************
********
• // INTRODUCTION FUNCTION
• //*******************************************************
*********
•
• void intro()
• {
• cout<<"\n\n\n\t\t STUDENT";
• cout<<"\n\n\t\tREPORT CARD";
• cout<<"\n\n\t\t PROJECT";
• cout<<"\n\n\n\tMADE BY : SEJAL CHANDNA";
• cout<<"\n\tSCHOOL : JAYCEES PUBLIC SCHOOL";
• getch();
• cout<<"\n\n\t3.SEARCH STUDENT RECORD ";
• cout<<"\n\n\t4.MODIFY STUDENT RECORD";
• cout<<"\n\n\t5.DELETE STUDENT RECORD";
• cout<<"\n\n\t6.BACK TO MAIN MENU";
• cout<<"\n\n\tPlease Enter Your Choice (1-6) ";
• cin>>ch;
• clrscr();
• switch(ch)
• {
• case '1': write_student(); break;
• case '2': display_all(); break;
• case '3': cout<<"\n\n\tPlease Enter The roll number
"; cin>>num;
• display_sp(num); break;