• 2022-07-28
    如果要实现计算x绝对值的功能,下面程序有错误的是?
    A: int fun(int x){ if(x<0) return -x;
    return x; }
    B: int fun(int x){ if(x<0) return -x;
    else return x; }
    C: int fun(int x){ if(x<0) return -x;
    if(x>0) return x; }
    D: int fun(int x){ if(x<0) return -x;
    else if(x==0) return x; else return x; }