Student Record List With Parallel Arrays

From CompSciWiki
Revision as of 03:00, 6 April 2010 by DavidY (Talk | contribs)

Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

Given two parallel arrays, where the first array stores the a list of student's names and the second array stores the list of grades, print out the name of the student and their corresponding grade. Find the student with the highest grade and the student with the lowest grade and print the results. Use a honoursRoll[] boolean array to store true if the corresponding student is eligible for honours (>=80) and print the results.

 

SideSectionTitle

float
Taken from http://www.flickr.com/photos/daniello/565304023/

An image or By Students section

Solution

The solution...

Code

Solution Code

Back to the Program-A-Day homepage