blob: d3e82e70db22d80096820109e46d89a2852d3307 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// File: CST116-Lab_5.h
// Summary: A compilation of header files for Lab 5
// Author: Logan Billingsley
// Date: 11/2/2021
#include <iostream>
#include <cstring>
using namespace std;
// 9b -- 10.6 Learn by Doing Exercises
/*
const int SIZE = 10;
void GetScores(float[]);
void DisplayScores(float scores[], int&, int&, int&, int&, int&);
void DisplayTotals(int, int, int, int, int);
*/
// 10a -- 10.7 Learn by Doing Exercies 2
/*
const int SIZE = 20 + 1;
void GetNames(char[], char[]);
void FullName(char[], char[], char[]);
void PrintName(char[]);
*/
// 10b -- 10.8 Exercies 7
/*
const int SIZE = 20 + 1;
void GetString1(char[]);
void GetString2(char[]);
void CompareStrings(char[], char[]);
*/
|