求两个数或者三个正整数中的最大数,用带有默认参数的函数实现。
此题主要是练习如何使用默认参数的函数,代码如下:
#include <iostream> using namespace std; //引用名字空间 int main() { int max(int,int,int); int a,b,c; cin >> a >> b >> c; cout << "max value is : " << max(a,b,c) << endl; cin >> a >> b; cout << "max value is : " <<max(a,b) << endl; system("pause"); return 0; }
int max(int a,int b,int c = 0) { if (a < b) { a = b; } if (c > a) { a = c; } return a; }
|
阅读(8987) | 评论(0) | 转发(0) |