0% found this document useful (0 votes)
13 views1 page

CSS

The document contains two C++ programs. The first program calculates the sum, average, maximum, minimum, and position of elements in an array of five integers. The second program computes the total number of days from the start of the year to a specified date based on user input for the month and day.

Uploaded by

maypyaesonewin22
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

CSS

The document contains two C++ programs. The first program calculates the sum, average, maximum, minimum, and position of elements in an array of five integers. The second program computes the total number of days from the start of the year to a specified date based on user input for the month and day.

Uploaded by

maypyaesonewin22
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

Find the sum, avg, maximum, minimum, min=a[0];


position of the array?
for(i=1;i<5;i++)
#include<iostream>
{
using namespace std;
if(a[i]<min)
int main()
{
{
min=a[i];
int i,total,position,avg;
}
int max,min;
}
total=0;
cout<<"the minimum is "<<min<<endl;
position=0;
return 0;
int a[5];
}
for(i=0;i<5;i++)
2.Find the total days from the start of the year
{ to this day.
cout<<"enter a["<<i<<"]="; #include<iostream>
cin>>a[i]; using namespace std;
} int main()
for(i=0;i<5;i++) {
{ int day,month,dayspermonth,total;
total+=a[i]; int daypermonth[12]={31,28,31,30,31,30,
} 31,31,30,31,30,31 };
cout<<"total="<<total<<endl; cout<<"Enter month";
cout<<"average="<<total/5<<endl; cin>>month;
max=a[0]; cout<<"Enter day";
for(i=1;i<5;i++) cin>>day;
{ total=day;
if(a[i]>max) for(int i=0;i<month-1;i++)
{ {
max=a[i]; total+=daypermonth[i];
position=i; }
} cout<<"Total="<<total;
} return 0;
cout<<"the maximum is "<<max<<endl; }
cout<<"the maximum position is
"<<position<<endl;

You might also like