I need help with this project

Apr 19, 2016 at 1:48pm
I want to do operations on courses, exams and
students data. The program use a defined string format to represent
courses exams and students. All courses exams will be in one line input, and
all students will be in one line input.l
CoursesExams=[HUM001,Technical Writing, 28/4/2016, HallA​;​CSE121,Computer Programming,3/5/2016, HallB]
Students=[12001,Ahmed Hassan, (CSE121,HUM001)​;​12002,Aly Hamed,(CSE121)]
http://www.mediafire.com/?qgpr3tjghgl1u2b
Last edited on Apr 19, 2016 at 6:20pm
Apr 19, 2016 at 3:59pm
It is a very descriptive project. What specific help do you need? What have you code so far?
Apr 19, 2016 at 6:17pm
Students data of the same student are separated by comma
User can enter data for up to 100 students and 100 courses
And each student can't exceed 10 courses......Course Code (like HUM001)
2. Course Name (like Technical Writing)
3. Exam Date (like 28/4/2016)
4. Exam Location (like HallA)
Data of the same course exam are separated by comma as User can enter data for up to 100 courses exams in one line
separated by ';'
Students Data
The Students line contains a list of students data separated by ‘;’. Fields students are:
1. Student ID (like 12001)
2. Student Name(like Angely assan)
3. Course codes of student attended courses (like (CSE121,HUM001)).
One student can attend up to 10 courses.
...I used a for loop to find ';' with a counter that doesn't exceed 100 but the problem I can't find the students courses
Number_Halls
Exams_Start_Date The date of the earliest exam
Exams_End_Date The date of the latest exam
Exams_Period_InDays
To seperate the these parts out of a string and find their number specially the dates of the earliest and last and their periods
Topic archived. No new replies allowed.