Search This Blog

diagnosis game Icon in turbo c++




 

#include<stdio.h>

#include<dos.h>

#include<stdlib.h>

#include<conio.h>

void getup()

{

    window(1,25,80,25);

    textcolor(9);

    for(int x=0;x<79;x++)

    cprintf("?");

    textcolor(10);

}

 

void ds()

{

    static int a=1,b=1;

    while(!kbhit()){

//  window(2,16,17,25);

    window(b+1,16,b+17,25);

    cprintf("         ????????");

    cprintf("         ????????");

    cprintf("         ????????");

    cprintf(" ?      ???????? ");

    cprintf(" ???  ?????????? ");

    cprintf(" ????????????  ? ");

    cprintf("   ?????????     ");

    if(a==1)

    {

    cprintf("    ????  ???    ");

    cprintf("      ??         ");

    a=2;

    }

    else if(a==2)

    {

    cprintf("     ??? ??      ");

    cprintf("          ??    ");

    a=1;

    }

    else{

    cprintf("   ???? ??      ");

    cprintf("    ??   ??    ");

    }

    delay(100);

    if(b==63)

    {

    clrscr();

    getup();

    b=1;

    }

    else

    b++;

    }

}

void main()

{

    clrscr();

    getup();

    ds();

    getch();

}



Share this article :

0 comments:

Post a Comment