利用数组和函数重载求5个数最大值(分别考虑整数、单精度的情况)。
输入格式:
分别输入5个int型整数、5个float 型实数。
输出格式:
分别输出5个int型整数的最大值、5个float 型实数的最大值。
输入样例:
在这里给出一组输入。例如:
11 22 666 44 55
11.11 22.22 33.33 888.88 55.55
输出样例:
在这里给出相应的输出。例如:
666
888.88
#include<iostream>
using namespace std;
int max(int a[])
{
int i;
int u;
for(i=0;i<5;i++)
{
if(a[i]>u);
u=a[i];
}
return u;
}
float max(float a[])
{
int j;
float p;
for(j=0;j<5;j++)
{
if(a[j]>p);
p=a[j];
}
return p;
}
int main()
{
int j;
int x[5];
float y[5];
cout<<"请输入5个整数:"<<endl;
for(j=0;j<5;j++)
cin>>x[j];
cout<<"请输入5个浮点数:"<<endl;
for(j=0;j<5;j++)
cin>>y[j];
int a;
a=max(x);
float b;
b=max(y);
cout<<"5个整数中最大值为"<<a<<endl;
cout<<"5个浮点数中最大值为"<<b<<endl;
return 0;
}
标签:型求,return,cout,int,max,float,五个,输入
From: https://www.cnblogs.com/7777lcc/p/17323970.html