c語言實現掃雷秒殺掛,c語言 掃雷

本文目錄一覽:

C語言編簡單的掃雷

給你一個完整的掃雷源碼

#include conio.h

#include graphics.h

#include stdio.h

#include stdlib.h

#include time.h

#include ctype.h

#include “mouse.c”

#define YES 1

#define NO 0

#define XPX 15 /* X pixels by square */

#define YPX 15 /* Y pixels by square */

#define DEFCX 30 /* Default number of squares */

#define DEFCY 28

#define MINE 255-‘0’ /* So that when it prints, it prints char 0xff */

#define STSQUARE struct stsquare

STSQUARE {

unsigned char value; /* Number of mines in the surround squares */

unsigned char sqopen; /* Square is open */

unsigned char sqpress; /* Square is pressed */

unsigned char sqmark; /* Square is marked */

} *psquare;

#define value(x,y) (psquare+(x)*ncy+(y))-value

#define sqopen(x,y) (psquare+(x)*ncy+(y))-sqopen

#define sqpress(x,y) (psquare+(x)*ncy+(y))-sqpress

#define sqmark(x,y) (psquare+(x)*ncy+(y))-sqmark

int XST, /* Offset of first pixel X */

YST,

ncx, /* Number of squares in X */

ncy,

cmines, /* Mines discovered */

initmines, /* Number of initial mines */

sqclosed, /* Squares still closed */

maxy; /* Max. number of y pixels of the screen */

void Graph_init(void);

void Read_param(int argc, char *argv[]);

void Set_mines(int nminas);

void Set_square(int x, int y, int status);

void Mouse_set(void);

void Draw_squares(void);

int Do_all(void);

void Blow_up(void);

void Open_square(int x, int y);

int Open_near_squares(int x, int y);

/************************************************************************/

void main(int argc, char *argv[])

{

if (!mouse_reset()) {

cputs(” ERROR: I can’t find a mouse driver\r\n”);

exit(2);

}

Graph_init();

Read_param(argc, argv);

Mouse_set();

do {

randomize();

cleardevice();

Set_mines(cmines=initmines);

mouse_enable();

Draw_squares();

}

while (Do_all() != ‘\x1b’);

closegraph();

}

/*************************************************************************

* *

* F U N C T I O N S *

* *

*************************************************************************/

/*———————————————————————-*/

void Graph_init(void)

{

int graphdriver=DETECT, graphmode, errorcode;

if(errorcode 0) {

cprintf(“\n\rGraphics System Error: %s\n”,grapherrormsg(errorcode));

exit(98);

}

initgraph(graphdriver, graphmode, “”);

errorcode=graphresult();

if(errorcode!=grOk) {

printf(” Graphics System Error: %s\n”,grapherrormsg(errorcode));

exit(98);

}

maxy=getmaxy();

} /* Graph_init */

/*———————————————————————-*/

void Read_param(int argc, char *argv[])

{

int x, y, m;

x=y=m=0;

if (argc!=1) {

if (!isdigit(*argv[1])) {

closegraph();

cprintf(“Usage is: %s [x] [y] [m]\r\n\n”

“Where x is the horizontal size\r\n”

” y is the vertical size\r\n”

” m is the number of mines\r\n\n”

” Left mouse button: Open the square\r\n”

“Right mouse button: Mark the square\r\n”

” -The first time puts a ‘mine’ mark\r\n”

” -The second time puts a ‘possible ”

“mine’ mark\r\n”

” -The third time unmarks the square\r\n”

“Left+Right buttons: Open the surrounded squares only if ”

“the count of mines\r\n”

” is equal to the number in the square”,argv[0]);

exit (1);

}

switch (argc) {

case 4: m=atoi(argv[3]);

case 3: y=atoi(argv[2]);

case 2: x=atoi(argv[1]);

}

}

XST=100;

ncx=DEFCX;

if (maxy==479) {

YST=30;

ncy=DEFCY;

}

else {

YST=25;

ncy=20;

}

if (x0 xncx)

ncx=x;

if (y0 yncy) {

YST+=((ncy-y)*YPX)1;

ncy=y;

}

initmines= m ? m : ncx*ncy*4/25; /* There are about 16% of mines */

if (((void near*)psquare=calloc(ncx*ncy, sizeof(STSQUARE)))==NULL) {

closegraph();

cputs(“ERROR: Not enought memory”);

exit(3);

}

} /* Read_param */

/*———————————————————————-*/

void Set_mines(int nminas)

{

C語言掃雷怎麼實現?

點擊(x,y)

{

如果(x,y)格子不存在,return

如果是炸彈,GG

如果已經翻開,return

如果周圍有雷,顯示雷數量,並標記翻開

否則

{

顯示空,並標記翻開

點擊(x-1,y-1)….點擊(x+1,y+1)共8個

}

}

基本思路是這樣

掃雷C語言

#include stdio.h

#define N 40

int a[N][2];

int num;

void display()

{

for(int j=0; j num; j++)

{

printf(“%d “, a[j][1]);

}

printf(“\n”);

}

void test(int i)

{

if(i == num)

{

int j;

int flag = 1;

if(a[0][1]+a[1][1]!=a[0][0]a[num-1][1]+a[num-2][1]!=a[num-1][0])

{

}

for(j = 1; j num – 1; j++)

{

if(a[j-1][1] + a[j][1] + a[j+1][1] != a[j][0])

flag = 0;

}

if(flag)

display();

}

for(; i num; i++)

{

if(a[i][1] == 0)

{

if(i == 0)

{

if(a[i][1]+a[i+1][1] != a[i][0])

{

a[i][1] = 1;

test(i+1);

a[i][1] = 0;

}

}

if(i 0)

{

if(a[i-1][1] + a[i][1] + a[i+1][1] != a[i][0])

{

a[i][1] = 1;

test(i+1);

a[i][1] = 0;

}

}

}

}

}

int main()

{

int i;

printf(“輸入個數:\n”);

scanf(“%d”,num);

printf(“輸入數據(0~3):\n”);

for(i = 0; i num; i++)

{

scanf(“%d”,a[i][0]);

a[i][1]=0;

}

for(i = 1; i num – 1; i++)

{

if(a[i][0] == 3)

{

a[i-1][1] = 1;

a[i][1] = 1;

a[i+1][1] = 1;

}

}

test(0);

}

算法思想:

1、如果有輸入數字是3則輸出數字中對應上中下都必為1

2、輸出數組中只有為0的才能為1;

3、用回溯法判斷成立條件,成功則輸出。

C語言掃雷算法,也可以別的語言,解釋清楚算法就好

在這上面不好說明, 我有C的代碼, 你看一下(DEVC++)

#include stdio.h

#include stdlib.h

#include time.h

#include windows.h

#define n 15

int restart=0;

int last_sel_x,last_sel_y;

char in[20];

struct POINT

{

int x;

int y;

} pt;

//設置CMD窗口光標位置

void setxy(int x, int y)

{

   COORD coord = {x, y};

   SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);

}

//獲取當前CMD當前光標所在位置

void getxy()

{

HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);

    COORD coordScreen = {0, 0}; //光標位置

    CONSOLE_SCREEN_BUFFER_INFO csbi;

    if (GetConsoleScreenBufferInfo(hConsole, csbi))

    {

    //    printf(“光標坐標:(%d,%d)\n”,  csbi.dwCursorPosition.X, csbi.dwCursorPosition.Y);

     pt.x=csbi.dwCursorPosition.X;

     pt.y=csbi.dwCursorPosition.Y;

    }

}

struct A

{

int value; //-1為雷 

int state; //顯示狀態: 0為未打開, 1為已打開 

int lock;  //鎖定狀態 

int bomb;  //雷已標記: 0為未標記, 1為已標記 

};

struct A s[10][10];

int calc()

{

int i,j,count=0;

for(i=0;i10;i++)

{

for(j=0;j10;j++)

{

if(s[i][j].state==0) count++;

}

}

return count;

}

int prt()

{

system(“cls”);

int count=calc();

int i,j;

printf(“%3c”,’ ‘);

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_GREEN);  

for(i=0;i10;i++)

{

printf(“%3d”,i);

}

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);  

for(i=0;i10;i++)

{

printf(“\n”);

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_GREEN);  

printf(“%3d”,i);

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);  

for(j=0;j10;j++)

{

if(s[i][j].bomb==1)

{

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED);

printf(“%3c”,’*’);

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);  

}

else if(s[i][j].state==1)

{

if(s[i][j].value==0) printf(“%3c”,’ ‘);

else printf(“%3d”,s[i][j].value);

}

else

{

printf(“%3c”,’-‘);

}

/* if(s[i][j].value==-1) printf(“%3c”,’*’);

else printf(“%3d”,s[i][j].value);*/

}

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_GREEN);  

printf(“%3d”,i);

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);  

}

printf(“\n”);

printf(“%3c”,’ ‘);

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_GREEN);  

for(i=0;i10;i++)

{

printf(“%3d”,i);

}

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);  

printf(“\n”);

getxy();

setxy(45,0);

printf(“%d”,count);

setxy(40,5);

printf(“說明”); 

setxy(40,7);

printf(“1: 輸入 *xy(如:*55),則把第5行第5列”);

setxy(40,8);

printf(”   標記為地雷”); 

setxy(40,10);

printf(“2: 輸入 xy(如55),則把第5行第5列打開”); 

if(count==n)

{

for(i=0;i10;i++)

{

for(j=0;j10;j++)

{

if(s[i][j].value==-1  s[i][j].bomb==0) s[i][j].bomb=1;

if(s[i][j].value!=-1  s[i][j].state==0) s[i][j].state=1;

}

}

setxy(50,2);

printf(“success!”);

setxy(pt.x,pt.y);

fflush(stdin);

getchar();

return 1;

}

setxy(pt.x,pt.y);

return 0;

}

void space_process(int x,int y)

{

int i,j;

if(x-1=0  y-1=0)

{

if(s[x-1][y-1].value==0   s[x-1][y-1].lock==0) {s[x-1][y-1].state=1; s[x-1][y-1].lock=1; space_process(x-1,y-1);}

else if(s[x-1][y-1].value!=-1) s[x-1][y-1].state=1;

}

if(x-1=0)

{

if(s[x-1][y].value==0  s[x-1][y].lock==0) {s[x-1][y].state=1; s[x-1][y].lock=1; space_process(x-1,y);}

else if(s[x-1][y].value!=-1) s[x-1][y].state=1;

}

if(x-1=0  y+110)

{

if(s[x-1][y+1].value==0   s[x-1][y+1].lock==0) {s[x-1][y+1].state=1; s[x-1][y+1].lock=1; space_process(x-1,y+1);}

else if(s[x-1][y+1].value!=-1) s[x-1][y+1].state=1;

}

if(y-1=0)

{

if(s[x][y-1].value==0   s[x][y-1].lock==0) {s[x][y-1].state=1; s[x][y-1].lock=1; space_process(x,y-1);}

else if(s[x][y-1].value!=-1) s[x][y-1].state=1;

}

if(y+110)

{

if(s[x][y+1].value==0  s[x][y+1].lock==0) {s[x][y+1].state=1; s[x][y+1].lock=1; space_process(x,y+1);}

else if(s[x][y+1].value!=-1) s[x][y+1].state=1;

}

if(x+110  y-1=0)

{

if(s[x+1][y-1].value==0  s[x+1][y-1].lock==0) {s[x+1][y-1].state=1; s[x+1][y-1].lock=1; space_process(x+1,y-1);}

else if(s[x+1][y-1].value!=-1) s[x+1][y-1].state=1;

}

if(x+110)

{

if(s[x+1][y].value==0  s[x+1][y].lock==0) {s[x+1][y].state=1; s[x+1][y].lock=1; space_process(x+1,y);}

else if(s[x+1][y].value!=-1) s[x+1][y].state=1;

}

if(x+110  y+110)

{

if(s[x+1][y+1].value==0  s[x+1][y+1].lock==0) {s[x+1][y+1].state=1; s[x+1][y+1].lock=1; space_process(x+1,y+1);}

else if(s[x+1][y+1].value!=-1) s[x+1][y+1].state=1;

}

}

int process_char(char* t,int* i,int* j)

{

int len=strlen(t);

int x,y=0;

for(x=0;xlen;x++)

{

if(t[x]==’ ‘)

{

continue;

}

else

{

t[y++]=t[x];

}

}

t[y]=’\0′;

if(t[0]==’*’)

{

*i=t[1]-‘0’;

*j=t[2]-‘0’;

if(s[*i][*j].bomb==1)

{

s[*i][*j].bomb=0;

s[*i][*j].state=0;

}

else if(s[*i][*j].bomb==0   s[*i][*j].state==0)

{

s[*i][*j].bomb=1;

}

return 1;

}

else if(t[0]=’0′  t[0]=’9′)

{

*i=t[0]-‘0’;

*j=t[1]-‘0’;

return 0;

}

return 1;

}

int plus(int x, int y) //返回0為出錯,返回1為正確,返回-1為取消 

{

int count=s[x][y].value;

int bomb=0;

if(count==0 || count==-1) return -1;

if(x-1=0  y-1=0)

{

if(s[x-1][y-1].bomb==1) bomb++;

}

if(x-1=0)

{

if(s[x-1][y].bomb==1) bomb++;

}

if(x-1=0  y+110)

{

if(s[x-1][y+1].bomb==1) bomb++;

}

if(y-1=0)

{

if(s[x][y-1].bomb==1) bomb++;

}

if(y+110)

{

if(s[x][y+1].bomb==1) bomb++;

}

if(x+110  y-1=0)

{

if(s[x+1][y-1].bomb==1) bomb++;

}

if(x+110)

{

if(s[x+1][y].bomb==1) bomb++;

}

if(x+110  y+110)

{

if(s[x+1][y+1].bomb==1) bomb++;

}

if(bomb==s[x][y].value)

{

if(x-1=0  y-1=0)

{

if(s[x-1][y-1].value==-1  s[x-1][y-1].bomb==0) {return 0;}

}

if(x-1=0)

{

if(s[x-1][y].value==-1  s[x-1][y].bomb==0) return 0;

}

if(x-1=0  y+110)

{

if(s[x-1][y+1].value==-1  s[x-1][y+1].bomb==0) return 0;

}

if(y-1=0)

{

if(s[x][y-1].value==-1  s[x][y-1].bomb==0) return 0;

}

if(y+110)

{

if(s[x][y+1].value==-1  s[x][y+1].bomb==0) return 0;

}

if(x+110  y-1=0)

{

if(s[x+1][y-1].value==-1  s[x+1][y-1].bomb==0) return 0;

}

if(x+110)

{

if(s[x+1][y].value==-1  s[x+1][y].bomb==0) return 0;

}

if(x+110  y+110)

{

if(s[x+1][y+1].value==-1  s[x+1][y+1].bomb==0) return 0;

}

space_process(x,y);

int i,j;

for(i=0;i10;i++)

{

for(j=0;j10;j++)

{

s[i][j].lock=0;

}

}

return 1;

}

else

{

return -1;

}

}

void prt_selected(int x, int y, int flag)

{

if(flag==0)

{

if(x=0) x=last_sel_x;

if(y=0) y=last_sel_y;

}

int plus=2;

getxy();

if(x=0)

{

last_sel_x=x;

setxy(3,x+1);

int j;

if(flag==1) SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),BACKGROUND_BLUE | FOREGROUND_INTENSITY);

else SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);

for(j=0;j10;j++)

{

     if(s[x][j].bomb==1)

{

if(flag==1) SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY |  

            FOREGROUND_RED | BACKGROUND_BLUE);

             else SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);

printf(“%3c”,’*’); 

}

else if(s[x][j].state==1)

{

if(s[x][j].value==0) printf(“%3c”,’ ‘);

else printf(“%3d”,s[x][j].value);

}

else

{

printf(“%3c”,’-‘);

}

}

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);

}

if(y=0)

{

int i;

last_sel_y=y;

for(i=0;i10;i++)

{

if(last_sel_x==i) continue;

if(flag==1) SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),BACKGROUND_BLUE | FOREGROUND_INTENSITY);

else SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);

setxy(3*y+3,i+1);

if(s[i][y].bomb==1)

{

if(flag==1) SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY |

            FOREGROUND_RED | BACKGROUND_BLUE);

           else SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);

printf(“%3c”,’*’);

}

else if(s[i][y].state==1)

{

if(s[i][y].value==0) printf(“%3c”,’ ‘);

else printf(“%3d”,s[i][y].value);

}

else

{

printf(“%3c”,’-‘);

}

}

}

SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY | 

            FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);

setxy(pt.x,pt.y);

}

void input() //實時獲取鍵盤輸入 

{

int c;

int x=-1,y=-1;

int i=0;

int first_num=0; 

while(1)

{

fflush(stdin);

c=getch();

printf(“%c”,c);

if(c==10 || c==13) break;

if(c==8  i0)

{

in[i-1]=’\0′;

if(in[0]==’*’)

{

if(in[1]’0′ || in[1]’9′)

{

x=-1;

prt_selected(last_sel_x,-1,0);

}

if(in[2]’0′ || in[2]’9′)

{

y=-1;

prt_selected(-1,last_sel_y,0);

}

}

else

{

if(in[0]’0′ || in[0]’9′)

{

x=-1;

prt_selected(last_sel_x,-1,0);

}

if(in[1]’0′ || in[1]’9′)

{

y=-1;

prt_selected(-1,last_sel_y,0);

}

}

i–;

getxy();

setxy(pt.x,pt.y);

printf(” “);

setxy(pt.x,pt.y);

}

else if(c==’*’ || (c=’0′  c=’9′))

{

in[i++]=c;

if(in[0]==’*’)

{

if(in[1]!=’\0′  in[1]=’0′  in[1]=’9′)

{

x=in[1]-‘0’;

}

else

{

x=-1;

}

if(in[2]!=’\0′  in[2]=’0′  in[2]=’9′)

{

y=in[2]-‘0’;

}

else

{

y=-1;

}

}

else if(in[0]=’0′  in[0]=’9′)

{

x=in[0]-‘0’;

if(in[1]=’0′  in[1]=’9′)

{

y=in[1]-‘0’;

}

else

{

y=-1;

}

}

else x=-1;

if(x-1) prt_selected(x,-1,1);

if(y-1) prt_selected(-1,y,1);

}

}

}

int main()

{

int i=0,j,x,y;

while(1)

{

restart=0;

for(i=0;i10;i++)

{

for(j=0;j10;j++)

{

s[i][j].value=0;

s[i][j].state=0;

s[i][j].lock=0;

s[i][j].bomb=0;

}

}

srand((unsigned)time(0));

i=0;

while(in)

{

x=rand()%10;

y=rand()%10;

if(s[x][y].value!=-1)

{

s[x][y].value=-1;

i++;

}

}

for(i=0;i10;i++)

{

for(j=0;j10;j++)

{

if(s[i][j].value==-1) continue;

// n=0;

if(i-1=0)

{

if(s[i-1][j].value==-1) s[i][j].value++;

if(j-1=0)

{

if(s[i-1][j-1].value==-1) s[i][j].value++;

}

if(j+110)

{

if(s[i-1][j+1].value==-1) s[i][j].value++;

}

}

if(i+110)

{

if(s[i+1][j].value==-1) s[i][j].value++;

if(j-1=0)

{

if(s[i+1][j-1].value==-1) s[i][j].value++;

}

if(j+110)

{

if(s[i+1][j+1].value==-1) s[i][j].value++;

}

}

if(j-1=0)

{

if(s[i][j-1].value==-1) s[i][j].value++;

}

if(j+110)

{

if(s[i][j+1].value==-1) s[i][j].value++;

}

}

}

if(prt()==1)

{

restart=1;

continue;

}

while(1)

{

memset(in,’\0′,20);

fflush(stdin);

// scanf(“%[^\n]”,in);

input();

if(process_char(in,i,j)==1)

{

if(prt()==1)

{

restart=1;

break;

}

continue;

}

for(x=0;x10;x++)

{

for(y=0;y10;y++)

{

s[x][y].lock=0;

}

}

if(s[i][j].value==-1)

{

printf(“\nBomb”);

fflush(stdin);

getchar();

restart=1;

}

else if(s[i][j].value==0)

{

s[i][j].state=1;

space_process(i,j);

}

else if(s[i][j].state==1)

{

int re=plus(i,j);

{

switch(re)

{

case -1:

break;

case 0:

printf(“\nBomb”);

fflush(stdin);

getchar();

restart=1;

break;

case 1:break;

}

}

}

else

{

s[i][j].state=1;

}

if(prt()==1 || restart==1)

{

restart=0;

break;

}

}

}

return 0;

}

如何用C語言編程 掃雷!~

俄羅斯方快

掃雷

#includestdio.h

#includegraphics.h

#includestdlib.h

struct list

{

int x;

int y;

int num;

int bomb;

int wa;

};

struct list di[10][10];

int currentx=210;

int currenty=130;

void initxy(void)

{

int i,j;

for(i=0;i=9;i++)

for(j=0;j=9;j++)

{

di[j].x=i*20+200;

di[j].y=j*20+120;

di[j].wa=0;

di[j].bomb=0;

}

}

void initmu(void)

{

int i,j;

setcolor(2);

rectangle(200,120,400,320);

rectangle(190,110,410,330);

setfillstyle(8,14);

floodfill(191,111,2);

for(i=0;i=9;i++)

for(j=0;j=9;j++)

rectangle(di[j].x,di[j].y,di[j].x+19,di[j].y+19);

outtextxy(450,200,”press ‘enter’ to kick”);

outtextxy(450,250,”press ‘\’ to mark”);

}

void randbomb(void)

{

int k;

int i,j;

randomize();

for(i=0;i=9;i++)

for(j=0;j=9;j++)

{

k=random(5);

if(k==2)

di[j].bomb=1;

}

}

void jisuan(void)

{

int k=0;

int i,j;

for(i=0;i=9;i++)

for(j=0;j=9;j++)

{

if(ijdi[i-1][j-1].bomb)

k=k+1;

if(idi[i-1][j].bomb)

k=k+1;

if(jdi[j-1].bomb)

k=k+1;

if(i=8di[i+1][j].bomb)

k=k+1;

if(j=8di[j+1].bomb)

k=k+1;

if(i=8j=8di[i+1][j+1].bomb)

k=k+1;

if(ij=8di[i-1][j+1].bomb)

k=k+1;

if(i=8jdi[i+1][j-1].bomb)

k=k+1;

di[j].num=k;

k=0;

}

}

void xianbomb(void)

{

int i,j;

char biaoji[2];

char znum[2];

biaoji[0]=1;

biaoji[1]=NULL;

for(i=0;i=9;i++)

for(j=0;j=9;j++)

{

if(di[j].bomb==1)

outtextxy(di[j].x+2,di[j].y+2,biaoji);

else

{

itoa(di[j].num,znum,10);

setfillstyle(1,0);

bar(i*20+202,j*20+122,i*20+218,j*20+138);

outtextxy(i*20+202,j*20+122,znum);

}

}

}

void move(void)

{

int key;

key=bioskey(1);

if(key)

key=bioskey(0);

if(key==0x4800)

{

if(currenty130)

{

setcolor(0);

circle(currentx,currenty,5);

currenty-=20;

setcolor(4);

circle(currentx,currenty,5);

}

else

{

setcolor(0);

circle(currentx,currenty,5);

currenty=310;

setcolor(4);

circle(currentx,currenty,5);

}

}

if(key==0x4b00)

{

if(currentx210)

{

setcolor(0);

circle(currentx,currenty,5);

currentx-=20;

setcolor(4);

circle(currentx,currenty,5);

}

else

{

setcolor(0);

circle(currentx,currenty,5);

currentx=390;

setcolor(4);

circle(currentx,currenty,5);

}

}

if(key==0x4d00)

{

if(currentx390)

{

setcolor(0);

circle(currentx,currenty,5);

currentx+=20;

setcolor(4);

circle(currentx,currenty,5);

}

else

{

setcolor(0);

circle(currentx,currenty,5);

currentx=210;

setcolor(4);

circle(currentx,currenty,5);

}

}

if(key==0x5000)

{

if(currenty310)

{

setcolor(0);

circle(currentx,currenty,5);

currenty+=20;

setcolor(4);

circle(currentx,currenty,5);

}

else

{

setcolor(0);

circle(currentx,currenty,5);

currenty=130;

setcolor(4);

circle(currentx,currenty,5);

}

}

if(key==0x1c0d)

{

int i,j;

char snum[2];

snum[0]=NULL;

snum[1]=NULL;

i=(currentx-210)/20;

j=(currenty-130)/20;

if(di[j].bomb==1)

{

outtextxy(100,100,”game over”);

xianbomb();

sleep(2);

exit(0);

}

if(di[j].bomb==0)

{

di[j].wa=1;

setfillstyle(1,0);

bar(currentx-8,currenty-8,currentx+8,currenty+8);

setcolor(15);

itoa(di[j].num,snum,10);

outtextxy(currentx-8,currenty-8,snum);

setcolor(4);

circle(currentx,currenty,5);

}

}

if(key==0x2b5c)

{

char biaoji[2];

biaoji[0]=1;

biaoji[1]=NULL;

setcolor(0);

bar(currentx-8,currenty-8,currentx+8,currenty+8);

setcolor(4);

outtextxy(currentx-8,currenty-8,biaoji);

circle(currentx,currenty,5);

}

}

void success(void)

{

int k=1;

int i,j;

for(i=0;i=9;i++)

for(j=0;j=9;j++)

if(di[j].bomb==0di[j].wa==0)

k=0;

if(k==1)

{

outtextxy(100,100,”success good”);

xianbomb();

sleep(2);

exit(0);

}

}

void main(void)

{

int gd=DETECT,gm;

initgraph(gd,gm,””);

initxy();

initmu();

randbomb();

jisuan();

setcolor(4);

circle(210,130,5);

while(1)

{

move();

success();

}

}

C語言如何編程實現掃雷?使用WIN-TC或Microsoft Visual C++

我以前寫過 很簡單。

定義一個2維的數組,然後用rand() 隨機佈雷,然後計算沒有雷的上面的數字。 有雷的定義為-1,沒有雷的上面可能是0~8。

算法很簡單,剩下的就是繪製界面了。總體不難,為何不自己試試?

原創文章,作者:RCGC,如若轉載,請註明出處:https://www.506064.com/zh-hant/n/135835.html

(0)
打賞 微信掃一掃 微信掃一掃 支付寶掃一掃 支付寶掃一掃
RCGC的頭像RCGC
上一篇 2024-10-04 00:15
下一篇 2024-10-04 00:15

相關推薦

  • AES加密解密算法的C語言實現

    AES(Advanced Encryption Standard)是一種對稱加密算法,可用於對數據進行加密和解密。在本篇文章中,我們將介紹C語言中如何實現AES算法,並對實現過程進…

    編程 2025-04-29
  • 學習Python對學習C語言有幫助嗎?

    Python和C語言是兩種非常受歡迎的編程語言,在程序開發中都扮演着非常重要的角色。那麼,學習Python對學習C語言有幫助嗎?答案是肯定的。在本文中,我們將從多個角度探討Pyth…

    編程 2025-04-29
  • Python被稱為膠水語言

    Python作為一種跨平台的解釋性高級語言,最大的特點是被稱為”膠水語言”。 一、簡單易學 Python的語法簡單易學,更加人性化,這使得它成為了初學者的入…

    編程 2025-04-29
  • OpenJudge答案1.6的C語言實現

    本文將從多個方面詳細闡述OpenJudge答案1.6在C語言中的實現方法,幫助初學者更好地學習和理解。 一、需求概述 OpenJudge答案1.6的要求是,輸入兩個整數a和b,輸出…

    編程 2025-04-29
  • Python按位運算符和C語言

    本文將從多個方面詳細闡述Python按位運算符和C語言的相關內容,並給出相應的代碼示例。 一、概述 Python是一種動態的、面向對象的編程語言,其按位運算符是用於按位操作的運算符…

    編程 2025-04-29
  • Python語言由荷蘭人為中心的全能編程開發工程師

    Python語言是一種高級語言,很多編程開發工程師都喜歡使用Python語言進行開發。Python語言的創始人是荷蘭人Guido van Rossum,他在1989年聖誕節期間開始…

    編程 2025-04-28
  • Python語言設計基礎第2版PDF

    Python語言設計基礎第2版PDF是一本介紹Python編程語言的經典教材。本篇文章將從多個方面對該教材進行詳細的闡述和介紹。 一、基礎知識 本教材中介紹了Python編程語言的…

    編程 2025-04-28
  • Python語言實現人名最多數統計

    本文將從幾個方面詳細介紹Python語言實現人名最多數統計的方法和應用。 一、Python實現人名最多數統計的基礎 1、首先,我們需要了解Python語言的一些基礎知識,如列表、字…

    編程 2025-04-28
  • Python作為中心語言,在編程中取代C語言的優勢和挑戰

    Python一直以其簡單易懂的語法和高效的編碼環境而著名。然而,它最近的發展趨勢表明Python的使用範圍已經從腳本語言擴展到了從Web應用到機器學習等廣泛的開發領域。與此同時,C…

    編程 2025-04-28
  • Python基礎語言

    Python作為一種高級編程語言擁有簡潔優雅的語法。在本文中,我們將從多個方面探究Python基礎語言的特點以及使用技巧。 一、數據類型 Python基礎數據類型包括整數、浮點數、…

    編程 2025-04-28

發表回復

登錄後才能評論