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
- Andrew Ng
- coursera
- Runtime constants
- compile time constants
- 나동빈님
- Greedy
- regression problem
- sizeof()
- 프로그래밍
- standford University
- Machine Learning
- CLion
- C++
- #define
- #endif
- 이코테
- 코드블럭 오류
- 기계학습 기초
- decimal
- classification problem
- 형변환
- 단항연산자
- 연산자
- 학습 알고리즘
- 기계학습
- const
- 코딩테스트
- algorithm
- 본즈앤올
- 홍정모님
Archives
- Today
- Total
목록단항연산자 (2)
wellcome_공부일기
C++ | 03.03 증가/ 감소 연산자(Increment/ Decrement) 주의사항
1. 증가/ 감소 연산자(Increment/ Decrement) 2. 주의사항 증가/ 감소 연산자(Increment/ Decrement) 단항 연산자의 한 종류로, Prefix와 Postfix를 가지는 특징이 있습니다. heroine-day.tistory.com/17에서 단항 연산자의 Prefix와 Postfix를 가지는 특징을 볼 수 있습니다! (•͈⌔•͈⑅) #include using namespace std; int main() { int x =6, y =6; cout
프로그래밍/C++
2020. 5. 15. 23:38
01.07. C++ | 피연산자(Operand) 갯수에 따른 연산자(Operator)의 3가지 종류
1. 연산자(Operator)란? 2. 단항(Unary) 연산자와 이항(Binary) 연산자 3. 삼항(Ternary) 연산자 ≒ 조건부(Conditional) 연산자 연산자(Operator)란? 연산자란 피연산자(Operands)를 관계지어, 특정 일(더하기, 빼기, 곱하기)을 수행하는 것을 말합니다. C++ 프로그래밍에서 피연산자(Operand) 갯수를 중심으로 단항 연산자(Unary Operator), 이항 연산자(Binary Operator) 그리고 삼항 연산자(Ternary Operator) 총 3가지 종류의 연산자가 존재합니다. (산수, 논리, 비교 연산자처럼 기능에 의한 종류가 이해하기 쉽지만 여기서는 피연산자 갯수 중심으로 정리해보았습니다.) 단항 연산자(Unary Operator) 단항 ..
프로그래밍/C++
2020. 4. 24. 09:16