15: Matrix Array: Not Submitted
Given a set of values, output the corresponding matrix of size n*n
14: Array Backwards: Not Submitted
Given an array, output in forwards and backwards, also output the min, max, sum, and number of duplicates in the array.
13: Fibonacci Array: Not Submitted
Given an unknown amount of inputs, output the fibonacci at the index of those inputs.
12: Class Average: Not Submitted
Given a file of names and files for students, go through them and calculate their averages and the class average. Note: iomanip isn't working quite properly yet. So formatting differs between this one and Booth's
11: GPS: Not Submitted
Read GPS Data, and calculate the total distance traveled, distance from start, and average distance from start.
10: Ceasar Cipher: Not Submitted
Read a file, then decrypt or encrypt it using a classic Ceasar Cipher,
9: Read File: Not Submitted
Read a file and return the min, max, sum, and average of the integers in that file.
8: Guessing Game: Not Submitted
Create a random number and say `too high` or `too low` until they guess the right number.
7: Letter Grade: Not Submitted
Given five grades, output the average as well as the letter grade, min, max, and median.
6: Quadratic Formula: Not Submitted
Given the coefficients of a quadratic equation, out put the roots and the vertex.
5: Mean: Not Submitted
Return the Arithmetic Mean, Geometric Mean, Harmonic Mean, and Standard Deviation of five integers.
4: Sum Digits in an Integer: Not Submitted
Given an integer, sum each digit and print to the screen.
3: Approximate PI: Not Submitted
Use the given formula to print and approximation of PI to the screen.
2: Print a Table: Not Submitted
Use multiple couts to print a table to the screen.
1: Print Hello World: Not Submitted
Use cout to print 'Hello World !!' to the screen.