c – 查找最大数字的函数

前端之家收集整理的这篇文章主要介绍了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 ????

解决方法

函数中只执行一个 return语句.一旦代码遇到第一个返回,它将立即离开该函数,并且不会执行其他代码.
原文链接:https://www.f2er.com/c/117697.html

猜你在找的C&C++相关文章