用C语言写大富翁源代码

日期:2021-11-03 13:11:09 人气:1

用C语言写大富翁源代码

struct maptype
{
int money,belong;
char name[20];
}map[9][13]={0};
struct player
{
int x,y,money,di;
}man[3]={0};
int dx[5]={0,0,1, 0,-1};
int dy[5]={0,1,0,-1, 0};
int i,j,x,y;
int turn,step,res
    A+
热门评论