#include <cstdlib>
#include <iostream>
double high_Temp(double [],int);
double low_Temp(double []);
double Average_Temp(double [],int);
using namespace std;
int main(int argc, char *argv[])
{
cout<<"Temperature Calculation system By VIRTUALIANS GROUP "<<endl ;
int days;
cout<<"Enter the number of consecutive days to read their temperature : ";
cin>>days;
double temp[days];
int i, j;
double t;
for(i=0;i<days;i++)
{
cout<<endl<<"Enter temperature for day "<<i+1<<" : ";
cin>>temp[i];
cout<<" VIRTUALIANS GROUP VIRTUALIANS GROUP"<<endl ;
}
for(i=0; i<days; i++)
{
for(j=0; j<days-1; j++)
{
if (temp[j] > temp[j+1])
{
t = temp[j];
temp[j] = temp[j+1];
temp[j+1] = t;
}
}
}
cout<<endl<<"The Average Temprature is : "<<Average_Temp(temp,days);
cout<<endl<<"The Higest Temprature is : "<<high_Temp(temp,days);
cout<<endl<<"The Lowest Temprature is : "<<low_Temp(temp)<<endl;
system("pause");
}
double high_Temp(double a[],int arraysize)
{
return a[arraysize-1];
}
double low_Temp(double a[])
{
int b=0;
return a[b];
}
double Average_Temp(double a[],int arraysize)
{
int i;
double c=0;
for ( i = 0 ; i < arraysize ; i ++)
{
c=c+a[i];
}
c=c/i;
return c;
}
Dear students this is the complete solution of cs201 assignments no.2
kindly make some changes and submit it.
For any problem you surely welcome for consulting
Kindly find the attachment
Remember us in your pray by
VIRTUALIANS GROUP
MIT VIRTUALIANS
--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...
To post to this group, send email to vu_experts@googlegroups.com
To unsubscribe from this group, send email to vu_experts-unsubscribe@googlegroups.com
Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.
No comments:
Post a Comment