background image

int a[4][4];

int main()
{

HANDLE handle;
handle=initiate();
WORD

 

wColors[1]={FOREGROUND_BLUE|

 

FOREGROUND_GREEN|

FOREGROUND_INTENSITY };

while(1)
{

    sndPlaySound("Resource\\Just Dance.wav",SND_LOOP|SND_ASYNC);//用异步方

式播放音乐,PlaySound 函数在开始播放后立即返回

    system("CLS");

int n=0;
printf("目录\n1.开始游戏\n2.退出游戏\n\n\n");
scanf("%d",&n);
switch(n)
{
case 1:

system("CLS");
textout(handle,22,6,wColors+2,1,"请选择游戏等级:");
textout(handle,32,8,wColors+2,1,"1.初级");
textout(handle,32,10,wColors+2,1,"2.中级");
textout(handle,32,12,wColors+2,1,"3.高级");
while(1)
{

char choice;
choice=_getch();
if(choice=='1')
{

textout(handle,22,6,wColors+2,1,"开始游戏,初级");
textout(handle,32,8,wColors+2,1,"                ");
textout(handle,32,10,wColors+2,1,"                ");
textout(handle,32,12,wColors+2,1,"                ");
level=0,score=0;
Sleep(2000);
textout(handle,22,6,wColors+2,1,"                ");
break;

}
else if(choice=='2')
{

textout(handle,22,6,wColors+2,1,"开始游戏,中级");
textout(handle,32,8,wColors+2,1,"                ");
textout(handle,32,10,wColors+2,1,"                ");