일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바스크립트
- xss game 풀이
- lord of sql injection
- python
- element 조회
- property
- 백준 파이썬
- 김성엽 대표님
- suninatas 풀이
- jQuery
- xss game
- object
- 메소드
- burp suite
- sql injection
- 함수
- Pwndbg
- 사칙연산
- 객체
- 배열
- 파이썬
- htmlspecialchars
- IF문
- 포인터
- document
- 조건문
- window
- blind sql injection
- 백준 알고리즘
- github
Archives
- Today
- Total
power-girl0-0
[ C++ ] 함수 중복 본문
728x90
함수 중복이란?
|
예제
최대값과 최소값을 구해라.
#include <iostream>
using namespace std;
int big(int a, int b){
if(a>b) return a;
else return b;
}
int big(int a[], int size){
int res = a[0];
for(int i=1; i<size; i++)
if(res<a[i]) res = a[i];
return res;
}
int small(int a, int b){
if(a<b) return a;
else return b;
}
int small(int a[], int size){
int res = a[0];
for(int i=1; i<size; i++)
if(res>a[i]) res = a[i];
return res;
}
int main(){
int array[] = {1,9, -2,5,11,8,56,4,5,100,97,85,12,6};
cout<<"2와 3중 큰 값 : "<<big(2,3)<<endl;
cout<<"2와 3중 작은 값 : "<<small(2,3)<<endl;
cout<<"최대 값 : "<<big(array,sizeof(array)/sizeof(array[0]))<<endl;
cout<<"최소 값 : "<<small(array,sizeof(array)/sizeof(array[0]))<<endl;
}
728x90
'언어 > C++' 카테고리의 다른 글
[ C++ ] 피보나치수열 (0) | 2021.06.02 |
---|---|
[ C++ ] vector을 활용한 예제 (0) | 2021.06.01 |
[ C++ ] 헹맨 게임 (0) | 2021.04.13 |
[ C++ ] find를 활용하여, 문자 찾기 (0) | 2021.04.13 |
[ C++ ] 동적할당을 이용하여 원의 면적과 둘레 구하기 (0) | 2021.04.06 |
Comments