반응형

C언어 카운트다운 (countdown)

 

 

Print countdown

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Print countdown */
#include <stdio.h>
#include <unistd.h>
 
int main() {
    setbuf(stdout, NULL);
    int cd = 10;
    while (cd >= 0) {
        sleep(1);
        if (cd == 0) {
            printf("%d\n", cd);
            break;
        }
        printf("%d  >>  ", cd);
        cd = cd - 1;
    }
}

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Print countdown */
#include <stdio.h>
#include <unistd.h>
 
int main() {
    setbuf(stdout, NULL);
    int cd = 10;
    while (cd > 0) {
        sleep(1);
        printf("%d  >>  ", cd);
        cd = cd - 1;
    }
    sleep(1);
    printf("%d\n", cd);
}

 

 

 

 

반응형