掃雷遊戲。。c 編寫。。

2021-06-11 02:38:10 字數 1284 閱讀 2044

我知道很簡單,就這樣吧。。

/**********************掃雷*********************/

/*******************2012-11-20******************/

#include #include #include #include #include #include using namespace std;

struct node

;queueq;

int map[1010][1010],already[1010][1010];

int tempx,tempy,m,n,k,x0,y0,sum,l;

node temp,temp2;

int dir[8][2]=,,,,,,,};

bool judge()

void push()

bool bfs()

q.pop();

}return true;

}void print()

break;

case -1:

cout << ".";break;

default:

cout << "?";}}

cout << "|" << endl;

}cout << " ";

for (int i=1;i<=n;i++) cout << "-";

cout << endl;

}double random(double start, double end)

int judge2(int i,int j)

void creat()}}

for (int i=0;i<=m-1;i++)

for (int j=0;j<=n-1;j++)

if (map[i][j]==0)

for (int w=0;w<=7;w++)

map[i][j]+=judge2(i+dir[w][0],j+dir[w][1]);

}bool del()

if (sum!=m*n-k)

cout << "good job!" << endl << endl;

else

print();

return true;

}int main()

if (l==1)

if (!del())

break;

if (l==2)}}

system("pause");

return 0;

}

C 編寫掃雷遊戲

翻看了下以前大學學習的一些小專案,突然發現有個專案比較有意思,覺得有必要把它分享出來。當然現在看來,裡面有很多的不足之處,但因博主現在已經工作,沒有時間再去優化。這個專案就是利用c 編寫乙個windows系統下的掃雷小遊戲。首先講下掃雷小遊戲的玩法 1 掃雷就是要把所有非地雷的格仔揭開即勝利 踩到地...

掃雷(用C語言編寫掃雷遊戲)

用c語言編寫掃雷遊戲是很有趣的哦,在學習中遊戲,在遊戲中學習 game.h檔案 ifndef game h define game h enum option include include include include define row 11 define col 11 define sui...

c 掃雷遊戲

一 c 實現掃雷 1 在form中 bombclass bombclass new bombclass 布雷按鈕事件 private void initbombbtn click object sender,eventargs e 雷盤的滑鼠點選事件 方法一 private void bombpan...