Hi all,
I'm new to c++ and was given an assignment to make a function that will find the max and min of given test arrays. I was given a header file to download and the file contains two functions - one that increases the size of the console so there's more room to graph and one that plots values in an array using character graphics. It also contains several arrays containing test data. the test arrays are:
a. const int TEST_SIZE = 10;
b. double test1 [TEST_SIZE],test2 [TEST_SIZE], test3[TEST_SIZE], test4[TEST_SIZE];
Here's the code I have so far. I'm guessing I'm pretty far off but could someone point me in the right direction?