• 大小: 2.58KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: 贪吃蛇  

资源简介

入门级示例

资源截图

代码片段和文件信息

  
#include 

#include 

#include 

#include 

#include 

#include 

#include 

using namespace std; 

const int dd[4][2]={{10}{01}{-10}{0-1}}; 

char map[33][53]; 

int dfxfyscore; 

bool eat; 

struct body 



 int xy; 

 body *last*next; 

 body(){last=next=NULL;} 

}*head; 

int Rand(int lint r) 



 return rand()%(r-l+1)+l; 



void init() 



 for(int i=0;i<22;i++) 

 for(int j=0;j<52;j++) 

 map[i][j]=‘ ‘; 

 for(int i=0;i<52;i++) 

 map[0][i]=map[21][i]=‘#‘; 

 for(int i=0;i<22;i++) 

 map[i][0]=map[i][51]=‘#‘; 

 srand((unsigned)time(NULL)); 

 head=new body; 

 head->x=Rand(515)head->y=Rand(1040); 

 d=Rand(03); 

 switch(d

评论

共有 条评论