Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- do
- {
- std::cout << "Enter number of courses: ";
- std::cin >> numCourses;
- } while (numCourses > MAX_COURSES);
- const std::size_t NUM_COURSES = numCourses;
- unsigned short (*scores) [NUM_COURSES] = new unsigned short[numStudents][NUM_COURSES];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement