C++:函数重载示例
// 函数重载示例20220503.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>using namespace std;//声明三个函数,函数名相同,形参类型不同int myabs(int x);float myabs(float x);double myabs(double x);int _tmain(int argc, _TCHAR* argv[]){ cout &am