实例
以下是 max() 函数的源代码。该函数有两个参数 num1 和 num2,会返回这两个数中较大的那个数:
// 函数返回两个数中较大的那个数intmax(intnum1, intnum2){ // 局部变量声明 intresult; if(num1 > num2) result = num1; else result = num2; returnresult; }
以下是 max() 函数的源代码。该函数有两个参数 num1 和 num2,会返回这两个数中较大的那个数:
// 函数返回两个数中较大的那个数intmax(intnum1, intnum2){ // 局部变量声明 intresult; if(num1 > num2) result = num1; else result = num2; returnresult; }