Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- shell
- 학습
- TensorFlow
- 리눅스
- OpenCV
- 공부
- 딥러닝
- 텐서플로우
- python
- 코딩
- error
- 쉘
- 알고리즘
- 턱걸이
- 운영체제
- linux
- 시스템프로그래밍
- 백준알고리즘
- Computer Vision
- 회귀
- 백준
- CV
- 프로세스
- C언어
- C++
- 영상처리
- 프로그래밍
- c
- Windows 10
- Windows10
Archives
- Today
- Total
목록continue (1)
줘이리의 인생적기

Index while for do ~ while 중첩 반복문 break, continue 1. while 조건식을 먼저 검사하고 조건식이 참인 동안 실행문 반복 while문 예제 #include int main(void) { int a = 1; while (a < 10) { a *= 2; } printf("a는 %d\n", a); return 0; } 실행결과(충분한 생각을 가진 후 누르기) 더보기 2. for while문과 비슷한 반복문, 증감식으로 반복 횟수를 제어 for문 예제 #include int main(void) { int a = 1; int i; for (i = 0; i < 5; i++) { a = a * 2; } printf("a는 %d\n", a); return 0; } 실행결과(충분한..
공부/C
2020. 5. 12. 19:10