일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- Excel
- Google Spreadsheet
- Mac
- PANDAS
- PySpark
- google apps script
- dataframe
- Redshift
- hive
- 파이썬
- Python
- Java
- Google Excel
- Github
- gas
- SQL
- numpy
- matplotlib
- list
- Kotlin
- c#
- django
- Tkinter
- Apache
- string
- math
- PostgreSQL
- array
- Today
- Total
목록C++ (12)
달나라 노트
논리값인 true, false값을 합성시키는 여러 논리 연산자에 대해 알아볼 것입니다. 일단 알아보기전에 먼저 간단한 내용을 알고갑시다. True를 숫자로 표시하면 1입니다. False를 숫자로 표시하면 0입니다. 즉, 1은 true를 의미하며 0은 false를 의미한다는 것을 알고갑시다. #include using namespace std; int main() { bool test1 = true && true; cout
switch 구문은 아래와 같이 사용할 수 있습니다. switch (main_value) { case value1: main_value = value1 일때 실행할 부분 case value2: main_value = value2 일때 실행할 부분 ... default: main_value랑 동일한 부분이 하나도 없을 때 실행할 부분 } #include using namespace std; int main() { int test_1 = 5; switch (test_1) { case 1: cout
C++에서 조건문은 다음과 같이 사용할 수 있습니다. if (condition1) { condition1 = True일 경우 실행될 부분 } else if (condition2) { condition2 = True일 경우 실행될 부분 } else if (condition3) { condition3 = True일 경우 실행될 부분 } else { 모든 condition이 False일 경우 실행될 부분 } else if 부분은 원하는 만큼 추가 가능합니다. else if 부분은 아예 없어도 됩니다. 실제 예시를 봅시다. #include using namespace std; int main() { int test_1 = 5; if (test_1