- 博客(1)
- 收藏
- 关注
原创 利用数组和函数重载求2个数最大值(分别考虑整数、单精度、长整数的情况)
#include<iostream>#include<cstring>using namespace std;int FindMax(int a,int b){ if(a>b) return a; else return b;}float FindMax(float a,float b){ if(a>b) return a; else return b;}long FindMax(long a,long b){...
2021-10-14 19:23:53 868
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人