标签:参数 默认值 传递 数值 out 个数 clu namespace oid
#include<iostream>
using namespace std;
void fun(int x=3,int y=5,int z=7)
{
cout<<"x="<<x<<",y="<<y<<",z="<<z<<endl;
}
int main()
{
fun(1,2,3);
fun(1,2);
fun(1);
fun();
return 0;
}
2017.4.20实验三:4、定义一个带有默认值参数的函数,通过传递不同个数的参数值,调用该函数。
标签:参数 默认值 传递 数值 out 个数 clu namespace oid
原文地址:http://www.cnblogs.com/linxiaojie517/p/6791527.html