blob: 0f5e8721fcbb6a0d522a362b3ee125d251011dcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// Created by Till on 27-Oct-21.
//
#include <iostream>
using namespace std;
const int NUM_STUDENTS = 10;
void ReadScores(float[]); //input scores from keyboard
void LetterGrade(char[], float[]); //change score to letter grade and store in alt list
float calcAverage(float[]); //calculate average score for students
void printInfo(float[], char[], float avg); //display all info
|