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
- classification problem
- compile time constants
- decimal
- #endif
- 본즈앤올
- coursera
- Machine Learning
- 나동빈님
- 코드블럭 오류
- 이코테
- 기계학습 기초
- const
- 홍정모님
- C++
- 단항연산자
- sizeof()
- regression problem
- 학습 알고리즘
- 연산자
- CLion
- Runtime constants
- algorithm
- #define
- Andrew Ng
- standford University
- 프로그래밍
- 코딩테스트
- 형변환
- 기계학습
- Greedy
Archives
- Today
- Total
목록관계연산자 주의사항 (1)
wellcome_공부일기
C++ | 03.05 관계 연산자(Relational operator)
1. 관계연산자(Relational operator) 2. 주의 사항과 코드 예시 관계 연산자(Relational operator) 두개의 피연산자의 사이를 정의하는 연산자로 '=='은 비교, '!='은 같지 않음 등의 관계를 나타낼 수 있습니다. 실전에서는 두 숫자 중 무엇이 더 크고 같냐, 다르냐를 다루지만, 부동 소수점 혹은 서로의 차이를 알려주는 코드에서 문제가 발생할 수 있습니다. 기본 코드 #include using namespace std; int main() { while (true) { int x, y; cin >> x >> y; cout
프로그래밍/C++
2020. 5. 17. 18:03