C++ Primer(第5版) 练习 6.5
练习 6.5 编写一个函数输出其实参的绝对值。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************
> File Name: ex6.5.cpp
> Author:
> Mail:
> Created Time: Mon 12 Feb 2024 10:38:16 PM CST
************************************************************************/
#include<iostream>
using namespace std;
int absoluteValue(int num){
if(num == 0){
return num;
}
return num > 0 ? num : -1 * num;
}
int main(){
int num;
cout<<"Enter number: ";
cin>>num;
cout<<num<<" absolute value is "<<absoluteValue(num)<<endl;
return 0;
}