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
- TensorFlow
- 회귀
- 리눅스
- 학습
- 알고리즘
- 공부
- Computer Vision
- 턱걸이
- 백준알고리즘
- 시스템프로그래밍
- Windows 10
- 백준
- 쉘
- python
- c
- 코딩
- 운영체제
- 텐서플로우
- 영상처리
- error
- C언어
- linux
- 프로세스
- 프로그래밍
- 딥러닝
- CV
- shell
- Windows10
- OpenCV
- C++
Archives
- Today
- Total
목록dowhile (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