728x90
1.
#include <iostream>
using namespace std;
int big(int a, int b);
int big(int a, int b, int c);
int main()
{
int x = big(3, 5);
int y = big(300, 60);
int z = big(30, 60, 50);
cout << "< 함수 big()를 이용하여 출력하는 프로그램 >" << endl;
cout << x << ' ' << y << ' ' << z << endl;
}
int big(int a, int b) {
if (a > b)
{
if (a > 100)
return 100;
else
return a;
}
else
{
if (b > 100)
return 100;
else
return b;
}
}
int big(int a, int b, int c)
{
if (a > b)
{
if (a > c)
return c;
else
return a;
}
else
{
if (b > c)
return c;
else
return b;
}
}
2.
#include <iostream>
using namespace std;
int big(int a, int b, int c = 100);
int main()
{
int x = big(3, 5);
int y = big(300, 60);
int z = big(30, 60, 50);
cout << "< 함수 big()를 이용하여 출력하는 프로그램 >" << endl;
cout << x << ' ' << y << ' ' << z << endl;
}
int big(int a, int b, int c)
{
if (a > b)
{
if (a > c)
return c;
else
return a;
}
else
{
if (b > c)
return c;
else
return b;
}
}
반응형
'전공 공부 > C++' 카테고리의 다른 글
클래스 Dept(60점 이상 통과한 학생 수 구하기) (0) | 2020.12.26 |
---|---|
클래스 Calendar (0) | 2020.12.26 |
클래스 Circle(반지름 입력, 면적이 100보다 큰 원 개수 구하기) (0) | 2020.12.26 |
실수 평균 구하기 (0) | 2020.12.26 |
성적처리 (0) | 2020.12.26 |