11 22 666 44 55 11.11 22.22 33.33 888.88 55.55 1234567 222222 333333 444444 555555
666 888.88 1234567
#include <iostream> using namespace std; //五个整数求最大数 int max(int a[]) { int i; int m=0; for(i=0; i<5; i++) { if(a[i]>m) m=a[i]; } return m; } //五个浮点数求最大数 float max(float a[]) { int i; float m=0.0; for(i=0; i<5; i++) { if(a[i]>m) m=a[i]; } return m; } //五个长整数求最大的 long max(long a[]) { int i; long m=0; for(i=0; i<5; i++) { if(a[i]>m) m=a[i]; } return m; } //主函数 int main() { int j; int x[5]; float y[5]; long z[5]; //输入 for(j=0; j<5; j++) cin >> x[j]; for(j=0; j<5; j++) cin >> y[j]; for(j=0; j<5; j++) cin >> z[j]; //输出 int e; e=max(x); cout << e << endl; float f; f=max(y); cout << f << endl; long g; g=max(z); cout << g << endl; return 0; }
原文地址:http://blog.csdn.net/u013634961/article/details/39010591