c·c++/c 프로그래밍

진동하는 배너

바로이순간 2013. 4. 7. 20:02

#include <stdio.h>

#include <stdlib.h>

#include <windows.h>

int main() {

    int i, k=0, x=1;

    system("cls");

    while(1) {

        for(i=0;i<8;++i) {

            if(i==k) putchar('0');

            else putchar('1');

        }

        k+=x;

        if(k>6||k<1) x=-x;

        Sleep(1000);

        system("cls");

    }


    return 0;

}