用C++编写程序:利用函数重载编写三个分别求短整数,整数和双精度数绝对值的函数,要求有输入和输出
1个回答
展开全部
#include <iostream>
/******/
short abs(short n) { return n > 0 ? n : -n; }
int abs(int n) { return n > 0 ? n : -n; }
double abs(double n) { return n > 0 ? n : -n; }
/******/
int main()
{
short a;
int b;
double c;
std::cin >> a >> b >> c;
std::cout << abs(a) << std::endl << abs(b) << std::endl << abs(c) << std::endl;
}
其实/*****/下里面可以这样写:
template <typename T> T abs(const T &n) { return n > 0 ? n : -n; }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询