前端之家收集整理的这篇文章主要介绍了
c – 查找最大数字的函数,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在通过Sololearn学习C语言.下面是一个
代码,用于查找两个数字中最大的一个.
#include <iostream>
using namespace std;
int max(int a,int b){
if (a > b) {
return a;
}
return b;
}
int main() {
cout << max(7,4) << endl;
return 0;
}
结果 – 7
但是它不应该返回b因为函数中有返回b ????
原文链接:https://www.f2er.com/c/117697.html