用C++做个简单的小游戏,最好是灭星,急!!!!

# include & ltiostream & gt

# include & ltwindows.h & gt

# include & lttime.h & gt

# include & ltconio.h & gt

使用

命名空间标准;

//刷新当前屏幕

inline void Refresh(char q[][22],int grade,int

gamespeed){

系统(“cls”);

//清除屏幕

int i,j;

cout & lt& lt

endl

for(I = 0;我& lt22;i++){

cout & lt& lt

”\ t”;

for(j = 0;j & lt22;j++)

cout & lt& ltq[I][j]& lt;& lt'

;//

输出蛇棋盘

if(I = = 0)cout & lt;& lt

" \t等级是:"

如果(i==4)

cout & lt& lt”\t自动提前时间”;

如果(i==6)

cout & lt& lt" t时间间隔是:"

”女士”;

cout & lt& ltendl

}

}

int main(){

tcsQipan[22][22];

int i,j;

for(I = 1;我& lt=20;i++)

for(j = 1;j & lt=20;j++)

tcsQipan[I][j]=“”;

for(I = 0;我& lt=21;i++)

tcsQipan[0][I]= tcsQipan[21][I]= '-';

for(I = 1;我& lt=20;i++)

tcsQipan[I][0]= tcsQipan[I][21]= ' | ';

int tcszuobao[2][100];

for(I = 0;我& lt4;

i++){

tcszoobao[0][I]=

1;

tcszoobao[1][I]= I+

1;

}

int head = 3,tail = 0;

for(I = 1;我& lt=3;i++)

tcsQipan[1][I]= ' * ';

tcsQipan[1][4]= ' # ';

int x1,

y 1;

srand(time(0));

做{

x 1 = rand()% 20+1;

y 1 = rand()% 20+1;

} while(tcsQipan[x 1][y 1]!='

');

tcsQipan[x 1][y 1]= ' * ';

cout & lt& lt" \ n \ n \ t \贪吃蛇游戏就要开始了!"& lt& ltendl//准备开始;;

长的

开始;

int grade = 1,长度= 4;

(同Internationalorganizations)国际组织

gamespeed = 500

for(I = 3;我& gt=0;我- ){

start =时钟();

while(clock()-start & lt;=1000);

系统(“cls”);

如果(i & gt0)

标准输出

& lt& lt" \ n \ n \ t \输入倒计时:"

endl

其他

刷新(tcsQipan,等级,gamespeed);

}

int timeover

字符方向=

77;

int x,y;

while(1){

超时=

1;

开始=

clock();

while((time over =(clock()-start & lt;= gamespeed))& amp;& amp!kb hit());

//如果按下某个键或时间超过自动前进间隔,则循环终止。

如果(超时){

getch();direction = getch();

}

开关(方向){

案例72: x=

tcszuobao[0][head]-1;y = tcszuobao[1][head];打破;//

向上

案例80: x=

tcszuobao[0][head]+1;y=

tcszuobao[1][head];打破;//

向下

案例75: x=

tcszoobao[0][head];y=

tcszuobao[1][head]-1;打破;//

向左

案例77: x=

tcszoobao[0][head];y=

tcszuobao[1][头]+1;

//到右边

}

如果(!(方向= = 72 | |方向= = 80 | |方向= = 75 | |方向==77)){

//

按键非方向键

cout & lt& lt" \ t结束了!"& lt& ltendl返回

0;

}

if(x==0 || x==21 ||y==0 ||

y==21){

标准输出

& lt& lt" \ t结束了!"& lt& ltendl返回

0;

}

if(tcsQipan[x][y]!='

& amp& amp!(x = = x 1 & amp;& ampy==y1)){

cout & lt& lt" \ t结束了!"& lt& ltendl返回

0;

}

if(x = = x 1 & amp;& amp

y==y1){

长度++;

if(长度& gt=8){

长度-=

8;

等级

++;

if(gamespeed & gt;=200)

gamespeed = 550 -等级* 50;//

更改自动推进时间间隔

}

tcsQipan[x][y]=

'#';

tcsQipan[tcszuobao[0][head]][tcszuobao[1][head]]=

'*';

=

(head+1)% 100;

tcszoobao[0][head]=

x;

tcszoobao[1][head]=

y;

{

x 1 = rand()% 20+1;

y 1 = rand()% 20+1;

} while(tcsQipan[x 1][y 1]!='

');

tcsQipan[x 1][y 1]= ' * ';

刷新(tcsQipan,等级,gamespeed);

}

else{ //

不要吃米饭

tcsQipan[tcszuobao[0][tail]][tcszuobao[1][tail]]= '

tail =(tail+1)% 100;

tcsQipan

[tcszuobao[0][head]][tcszuobao[1][head]]= ' * ';

head =(head+1)% 100;

tcszuobao[0][head]= x;

tcszuobao[1][head]= y;

tcsQipan[tcszuobao[0][head]][tcszuobao[1][head]]= ' # ';

刷新(tcsQipan,等级,gamespeed);

}

}

返回0;

}