while 문
●사용:조건을 만족할 때에 반복
●형식:
while (반복조건){
반복할 조건;
}
●코드예제:
#include <stdio.h>
int main() {
int n = 0;
int sum = 0;
while (sum <= 100) {
n++;
sum += n;
}
printf("sum이 100을 넘게 하는 n: %d", n);
return 0;
}
do-while 문
●사용:일단 한 번은 반복한 후 그다음은 조건을 만족할 때에 반복
●형식:
do{
반복할 내용
} while (반복 조건);
●코드예제:
#include <stdio.h>
int main() {
int n, cost, total, delivery;
cost = 4500, delivery = 2500;
printf("마라탕밀키트 1개 가격: %d원\n", cost);
printf("10개 이상 구매 시 %d원 배송비 무료\n\n", delivery);
do {
printf("구매 개수:");
scanf_s("%d", &n);
} while (n <= 0);
total = cost * n;
printf("총 결제액: %d원", total);
return 0;
}
'프로그래밍 언어 > C' 카테고리의 다른 글
C언어 10강+ 배열 응용: 배열의 최댓값구하기 알고리즘 (2) | 2020.10.31 |
---|---|
C언어 10강 배열(array)/문자열(char 활용) (0) | 2020.10.31 |
C언어 8강 반복문 for문 (0) | 2020.10.29 |
C언어 7강 else if문과 switch 문 (0) | 2020.10.28 |
C언어 6강 제어문의 시작 if문 (0) | 2020.10.28 |