14 lines
189 B
C++
14 lines
189 B
C++
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int func1(int a, int, int b = 20)
|
||
|
{
|
||
|
return a + b;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
cout << func1(10, 30) << endl;
|
||
|
cout << func1(10, 10, 100) << endl;
|
||
|
}
|