码迷,mamicode.com
首页 > 其他好文 > 详细

sqrt函数使用(重载函数调用)

时间:2020-04-16 22:43:02      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:调用   oat   重载   str   cin   ios   roo   pre   cout   

/*
time:2020年4月16日21:01:50
where:gfdx
function:重载函数调用---sqrt函数使用*/
#include<iostream>
#include<cmath>
using namespace std;
//重载1
float sroot(float a)
{
	return sqrt(a);
}
//重载2
int sroot(int a)
{
	return sqrt(a);
}
//重载3
double sroot(double a)
{
	return sqrt(a);
}
int main() {
	int a;
	cin >>a;
	cout <<sqrt(a) << endl;//输出重载函数
	return 0;
}

  

sqrt函数使用(重载函数调用)

标签:调用   oat   重载   str   cin   ios   roo   pre   cout   

原文地址:https://www.cnblogs.com/qq1480040000/p/12716044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!