zcmu 1176 掃雷(簡單題)

2021-08-25 14:00:15 字數 494 閱讀 4889

題目鏈結

因為一直沒玩過掃雷,前幾天訓練賽遇到了一道掃雷的題目,完全沒辦法下手,就狂玩掃雷,還挺好玩的!掃出來的數字就代表這個格仔的周圍(3*3的格仔,這個數放在中心,剩餘的8個格仔叫做「它的周圍」)有幾個炸彈!下面是我玩過的通關截圖,沒玩過的可以幫助理解。

這道題目比較簡單,只要計算是-1的格仔的周圍有幾個9就行了 

#include #include #include using namespace std;

int a[105][105];

int main()

}for(int i = 1;i <= n;i++)}}

}}for(int i = 1;i <= n;i++)

cout

return 0;

}

簡單掃雷小遊戲

game.h ifndef game h define game h include include include include define row 9 define col 9 define rows row 2 define cols col 2 define easy count 10 ...

簡單的掃雷實現

統計座標 x,y 周圍雷的個數 看座標x,y周圍的座標 int get mine count char mine rows cols int x,int y 統計周圍雷的個數 game.h define crt secure no warnings 1 ifndef game h define ga...

簡單掃雷遊戲的實現

掃雷遊戲的實現我採用多個原始檔的編寫方法,實現 的分模組化編寫,這樣不僅 清晰,且加強 的理解性。建議讀者在實現 時,不可心急求成,一次就要完成 的所有函式邏輯部分,而是先編寫大體 框架,一步步思考 的實現所需要的函式實現,進一步完善 的函式主體。標頭檔案部分 game.h ifndef game ...