[C Language] 숫자 카운트다운 출력하기

코드

#include<stdio.h>
int  main(void) {

	int num;
	int lineCount;

	printf("Enter an integer between 1 and 100: ");
	scanf("%d", &num);

	if (num > 100)
		num = 100;

	lineCount = 0;

	while (num > 0) { //num 값이 0보다 클 동안 반복
		if (lineCount < 10) { //lifecount 값이 10보다 작으면 1씩 증가
			lineCount++;
		}
		else {
			printf("\n"); //lifecount값이 10보다 크면 밑 숫자로 시작
			lineCount = 1; //1로 시작
		}
		printf("%4d", num--);
	}
	return 0;
}

실행 결과

댓글 쓰기

0 댓글