第一章课后题3_1(P58)

#include <iostream>
using namespace std;

void func(int a, int b, int c = 0)
{
cout << a << b << c << endl;
}

int main()
{
func(5,9);
system("pause");
return 1;
}

posted @ 2020-02-26 17:55  CollisionDimension  阅读(106)  评论(0)    收藏  举报