aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab5/Header.h
blob: 7009bf892c05d56e27102419c8ffe084fbcb4a87 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//  CODE FOR PROBLEM #1 (LEARN BY DOING) ON PAGE 253 IS BELOW  
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

//#include <iostream>
//#include <iomanip>
//
//using namespace std;
//
//
//void Display(float[], char[], float, float, int, int, int, int, int, int); //displays list of scores with letter grades and class analysis
//
//void GetInput(float[], int); //puts scores into array
//
//void ScoreToGrade(float[], char[], int); //translates scores to grades and puts into another array
//
//void ScoreAvg(float[], int, float&, float&); //finds sum and average of scores
//
//void Frequency(char[], int, int&, int&, int&, int&, int&); //counts frequency of different letter grades



//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//  CODE FOR PROBLEM #2 (LEARN BY DOING) ON PAGE 260 IS BELOW  
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

//#include <iostream>
//#include <iomanip>
//
//using namespace std;
//
////prompts for first and last name and puts them into arrays
//void getInput(char[], char[]);
//
////combines first and last names into another array
//void nameCombine(char[], char[], char[]);
//
////displays full name from array
//void display(char[]);


//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//  CODE FOR PROBLEM #7 (EXERCISES) ON PAGE 273 IS BELOW  
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


//#include <iostream>
//#include<iomanip>
//
//using namespace std;
//
////compares the first 6 characters of the two strings
//void compareStrings(char[], char[], int&);