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
- 따배씨
- Math
- 생활코딩
- C언어
- String
- udemy
- 인프런
- BOJ
- programmers
- BFS
- php
- BASIC
- greedy
- web
- Cleancode
- server
- 따라하며 배우는 C언어
- 백준
- JavaScript
- graph
- DP
- Algorithm
- 종만북
- 정수론
- Python
- dfs
- C
- Algospot
- sorting
- 따라하면서 배우는 C언어
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 6.13 탈출조건 루프 do while ~ 6.15 중첩된 루프들 본문
따배씨 - 따라하며 배우는 C언어
6강 반복문
6.13 탈출조건 루프 do while
#include <stdio.h>
int main()
{
const int password = 1234;
int guess = 0;
printf("Enter secret code : ");
scanf("%d", &guess);
while (guess != password)
{
printf("Enter secret code : ");
scanf("%d", &guess);
}
printf("Good!");
return 0;
}
#include <stdio.h>
int main()
{
const int password = 1234;
int guess = 0;
do
{
printf("Enter secret code : ");
scanf("%d", &guess);
}
while (guess != password);
printf("Good!");
return 0;
}
- do while 문으로 작성
6.14 어떤 루프를 사용할까?
- 진입조건 while, for
- 탈출조건 do while
6.15 중첩된 루프들 Nested
- skip
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
'Language > C' 카테고리의 다른 글
[따배씨] 6.17 for 루프를 배열과 함께 사용하기 ~ 6.18 루프 안에서 함수의 반환값 사용하기 (0) | 2021.05.21 |
---|---|
[따배씨] 6.16 배열 과 런타임 에러 (0) | 2021.05.20 |
[따배씨] 6.12 제논의 역설 시뮬레이션 예제 (0) | 2021.05.20 |
[따배씨] 6.10 다양한 대입 연산자들 ~ 6.11 콤마 연산자 (0) | 2021.05.20 |
[따배씨] 6.7 관계연산자 우선순위 ~ 6.9 for 문의 유연한 사용 (0) | 2021.05.20 |
Comments