|
IF ANY COULD HELP ME WITH THIS PROJECT, I WILL BE WILLING TO PAY
You have been hired as a programmer analyst to write a program to keep track of courses for a vocational school with 3 campuses which is growing rapidly. Write a program to read the following information from a data file.Each record is read into a struct type.This school offers as many as twenty courses at a given time. 1.Course identification Number(A five digit integer) 2.Department Course ID and Section Number I.e ABC123-1 3.Number of Credit for the course(integer) 4.Days and times the course meets 5.Room in which the course meets(building ID and room number) 6.maximum course enrollement 7.campus location 8.Name of the instructor 9.Number of students currently enrolled and for each students you need student ID and tuition paid for this course.(these 2 items are from a class called students which will be inherited by class courses. There are a maximum of forty students per course Identification Number(struct type). 10.Course status, open, closed, canceled.
You must write a program to ask for the 5 digit course identification number then display all info.The user may modify items 4,5,6(no more than forty),7 ,8,9,10.The user may add students to the course providing the course is open
At the end print all courses with all students registered in each course(Course Identification Number), total tuition which will be collected per course and total tuition. that will be collected for the entire schedule(all twenty courses). If the user enter a wrong Course Identification Number, display an error message. Your program should be menu driven. There will be two menus: Main menu to display Course Info Modify course info(items4 through 10) Student Submenu Print all info Total tuition per course Total tuition for the entire school Exit Student Sub menu Add Students Exit Concepts used in this project will include: File handling case/switch while loop search array handeling if/else #include
This post has been edited by dondouyon: 28 Nov, 2006 - 05:19 PM
|