반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Doitvue.js입문
- LeetCode
- Medium
- 동적계획법
- VUE
- 리트코드
- 배열
- 코테연습
- 웹프로그래밍
- 카카오
- Level2
- 프로그래밍
- react
- sql
- 파이썬
- typescript
- 자바스크립트
- C++
- Level3
- CS
- dp
- 고득점Kit
- OS
- 프로그래머스
- Level1
- 백준
- python
- javascript
- web
- 리액트
Archives
- Today
- Total
[c++] function(함수) 본문
반응형
-
프로토 타입
void Hello(); // 인사 int main() { Hello(); //함수 호출 return 0; } void Hello() { cout << "HI!" << endl; }
-
재귀 함수
int factorial(int) // 일반함수 int factorialRecursion(int) // 재귀 함수 int main(){ int in; cin>>in; cout<<factorial(in)<<endl; cout<<factorial(in)<<endl; } int factorial(int f){ int result = 1; for(int i= 0;i<=f;i++) result*=i; return result; } int factorialRecursion(int f){ if(f<=1) return 1; else return f*factorial(f-1); }
-
함수 포인터
(리턴형식)(*함수포인터명)(인자)void factorial(int,int&) int main(){ (void)(*pFact)(int,int&); int in, result = 0; pFact = &factorial; cin >> in; (*pFact)(in,result) cout << result<< endl; return 0; } void factorial(int f, int& rs){ result = 1; for(int i = 1; i<=f;i++) result *= i; rs = result //return 대신 참조변수를 사용하여 값을 바로 넣음 }
반응형
'객체지향프로그래밍 (C++)' 카테고리의 다른 글
[c++] dynamic memory allocation (동적 메모리 할당) ② (0) | 2020.07.06 |
---|---|
[c++] dynamic memory allocation (동적 메모리 할당) (0) | 2020.07.03 |
[c++] lamda function (람다 함수) (0) | 2020.07.03 |
[c++] reference (참조) (0) | 2020.07.02 |
[c++] enumeration (열거체) (0) | 2020.07.02 |
Comments