其他分享
首页 > 其他分享> > 例1-3

例1-3

作者:互联网

#include<iostream>
using namespace std;
void func(int a=11, int b=22,int c=33)
{
cout<<"a="<<a<<",b="<<b<<",c="<<c<<endl;
}
int main()
{
func();
func(55);
func(77,99);
func(8,88,888);
return 0;
}

标签:,std,includeusing,cout,int,func,11
来源: https://www.cnblogs.com/liushuiyi/p/14163147.html