Please help me Create a program to enter and average the high and low temperatures for the week.
Create a constant to define the size of two float arrays.
Create two one dimensional float arrays in the function main() called highs and lows.
const int MAX = 7
float highs[MAX];
float lows[MAX];
Write a loop to ask the user to enter the highs until the size of the array is reached.
Write a similar loop to ask the user to enter the lows until the size of the array is reached.
Use the defined constant (as shown above) when checking for the maximum size of each array.
Calculate the average high for the week
Calculate the average low for the week
Display those results.
prglili5994 0 Newbie Poster
Lucaci Andrew 140 Za s|n
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.