Im not sure why this isn't working correctly my output is not adding up correctly. Also this is in C++ This is the problem: Write a program that uses a two-dimensional array to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and the highest and lowest temperatures for the year. Your program must consist of the following functions: and this is my code: #include using namespace std; const int MONTHS = 12; void getData(float[][2],int); double averageHigh(float[][2],int); double averageLow(float[][2],int); int indexHighTemp(float[][2],int); int indexLowTemp(float[][2],int); int main() { float temp[MONTHS][2]; cout<<"Average High Tempreature for the year is" <>data[i][0]; cout<<"Enter the Lowest Temperature for the month"<<(i+1)<<":"; cin>>data[i][1]; } } double averageHigh(float data[][2],int n) { float sum=0; for(int i=0;iHigh) { High=data[i][0]; Index=i; } return Index; } int indexLowTemp(float data[][2],int n) { int Index=0; double low=data[0][1]; for(int i=1;i
Im not sure why this isn't working correctly my output is not adding up correctly. Also this is in C++ This is the problem: Write a program that uses a two-dimensional array to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and the highest and lowest temperatures for the year. Your program must consist of the following functions: and this is my code: #include using namespace std; const int MONTHS = 12; void getData(float[][2],int); double averageHigh(float[][2],int); double averageLow(float[][2],int); int indexHighTemp(float[][2],int); int indexLowTemp(float[][2],int); int main() { float temp[MONTHS][2]; cout<<"Average High Tempreature for the year is" <>data[i][0]; cout<<"Enter the Lowest Temperature for the month"<<(i+1)<<":"; cin>>data[i][1]; } } double averageHigh(float data[][2],int n) { float sum=0; for(int i=0;iHigh) { High=data[i][0]; Index=i; } return Index; } int indexLowTemp(float data[][2],int n) { int Index=0; double low=data[0][1]; for(int i=1;i
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
Im not sure why this isn't working correctly my output is not adding up correctly. Also this is in C++
This is the problem: Write a program that uses a two-dimensional array to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and the highest and lowest temperatures for the year. Your program must consist of the following functions:
and this is my code:
#include<iostream>
using namespace std;
const int MONTHS = 12;
void getData(float[][2],int);
double averageHigh(float[][2],int);
double averageLow(float[][2],int);
int indexHighTemp(float[][2],int);
int indexLowTemp(float[][2],int);
int main()
{
float temp[MONTHS][2];
cout<<"Average High Tempreature for the year is"
<<averageHigh(temp,MONTHS)<<endl;
cout<<"Average Low Tempreature for the year is"
<<averageLow(temp,MONTHS)<<endl;
cout<<"The Index of the Highest Tempreature in the array is"
<<indexHighTemp(temp,MONTHS)<<endl;
cout<<"The Index of the lowest Tempreature in the array is"
<<indexLowTemp(temp,MONTHS)<<endl;
return 0;
}
void getData(float data[][2],int n)
{
for(int i=0;i<n;i++)
{
cout<<"Enter the Highest Temperature for the month"<<(i+1)<<":";
cin>>data[i][0];
cout<<"Enter the Lowest Temperature for the month"<<(i+1)<<":";
cin>>data[i][1];
}
}
double averageHigh(float data[][2],int n)
{
float sum=0;
for(int i=0;i<n;i++)
sum+=data[i][0];
return(sum/n);
}
double averageLow(float data[][2],int n)
{
double sum=0;
for(int i=0;i<n;i++)
sum+=data[i][1];
return(sum/n);
}
int indexHighTemp(float data[][2],int n)
{
int Index=0;
double High=data[0][0];
for (int i=1;i<n;i++)
if(data[i][0]>High)
{
High=data[i][0];
Index=i;
}
return Index;
}
int indexLowTemp(float data[][2],int n)
{
int Index=0;
double low=data[0][1];
for(int i=1;i<n;i++)
if(data[i][1]<low)
{
low=data[i][1];
Index=i;
}
return Index;
}
ill attach a output immagine vs what it should beExpert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY