方格編程
發布時間: 2024-05-24 18:58:37
① 編程模擬「地雷游戲」在9x9方格中隨機布上10個地雷按9行9列輸出各格子的數,(有雷為9,無雷為0),在有相
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
int map[11][11];
const int N = 9;
void init()
{
memset(map,0,sizeof(map));
int c = 10;
int i,j;
int r;
while(c--)
{
do
{
r = rand()%81;
i = r/9;
j = r%9;
}while(map[i][j]!=0);
map[i][j]=9;
}
}
void print()
{
for(int i=0;i<N;++i)
{
for(int j=0;j<N;++j)
printf("%d",map[i][j]);
printf("\n");
}
}
int main()
{
srand(time(NULL));
init();
print();
return 0;
}
這個每次執行一次 就是隨機一個地雷陣
還有什麼問題再問我 用G++ 編譯
② C語言題(方格取數)
可以用遞歸的方式計算。
熱點內容