일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hive
- list
- Google Excel
- matplotlib
- PostgreSQL
- Java
- 파이썬
- Google Spreadsheet
- PANDAS
- string
- math
- SQL
- dataframe
- Kotlin
- Tkinter
- Python
- google apps script
- django
- gas
- Excel
- Redshift
- c#
- array
- Github
- numpy
- Apache
- Mac
- GIT
- PySpark
- Today
- Total
목록C++ (12)
달나라 노트
C++에서도 내가 원하는 기능을 담은 함수를 만들고 호출할 수 있습니다. void function_name() { function contents ~~ } 함수의 선언은 기본적으로 위처럼 가능합니다. #include using namespace std; void show_text() { cout
break 키워드는 실행되면 break가 속해있는 for loop, while loop, switch case 코드의 실행을 중단합니다. continue 키워드는 반복문의 한 단계를 한 번 건너뜁니다. #include using namespace std; int main() { for (int i = 1; i
while loop는 아래와 같이 사용할 수 있습니다. while (condition) { 실행할 코드 } while loop는 condition이 true인 경우에 코드를 실행합니다. conditoin이 false가 되면 while loop를 빠져나옵니다. #include using namespace std; int main() { int i = 1; while (i
C++에서 for loop는 아래처럼 사용할 수 있습니다. for (int i=1; i 먼저 for loop에서 각 단계마다 사용될 인덱스를 선언하고 1로 초기화해줍니다. i for loop가 진행될 조건입니다. 이 조건이 true인 경우 for loop의 코드를 실행합니다. i=i+1; -> for loop가 한번 실행된 후 인덱스인 i값을 1 증가시켜줍니다. 아래는 for loop를 사용한 예시입니다. #include using namespace std; int main() { for (int i = 1; i