I just started to study C++ by myself and having troubles..lot of troubles i especialy with (6),(7)...anyone knows CPP well enaugh?thank you people.....
I'm trying writing a program including information about a student in college:
(1)id number of the student (2)name of the student-static string of 20 (3)pointers array of 10 courses(each student studies maximum 10 courses) (4)array of final grades in the studied courses (5)every student can have data about less than 10 courses so the ammount of the actualy studied courses must(!!) be memorized/stored. (6)output function-student can be registered to course only if he stands by all the requirement for every course (7)input..
The MAIN function must present a menu for students wishing to make registration for courses and managing theirs grades,maximum students in college are 5...

#include <iostream>

Class student {
long student_number;
char student_name[20];
Course *course_arr[10]   ;//pointers array??
int grades_list[10];
int Actual_courses_studied();
require()   {   // supposed to be the (6)..dont know how to start even define it..
Input_func() ;
Output_func() {    }                 
}

int Student :: Input_func() {
if require()<>NULL   
cout<<"type student name and id" 
cin>> student_number>>student_name }

int Student::Actual_courses_studied() {
for (i=0,i<10,i++) 
if *course_arr[i]<>NULL   
 z++ 
return z  }

void main() {
student A;
A.Input_func();


}              //have no idea,broke my head how i make the main requirment

Recommended Answers

All 2 Replies

Start a loop
Output the menu
Accept the selection
Based on the selection, do the appropriate task. (Don't forget an exit selection)
End of loop

Did you bother to read the rules, especially the CODE TAG information?

Use vector of course if it is allowed in your project assignment.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.