1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| #include<stdio.h> #include<stdlib.h> #include<windows.h> #include<time.h> #define H 30 #define W 40
int map[H][W]={0};
void make_map(void) { int tool;
srand((unsigned)time(NULL));
for(int i=1;i<H-1;i++) { for(int j=1;j<W-1;j++) { tool=rand()%10;
if(tool<5)map[i][j]=1; else map[i][j]=0; } } }
int count_cell(int x,int y) { int cell=0;
cell=map[y-1][x-1]+map[y-1][x]+map[y-1][x+1]+map[y][x-1] +map[y][x+1]+map[y+1][x-1]+map[y+1][x]+map[y+1][x+1];
return cell; }
void updata_map(void) { int map2[H][W]={0}; int i,j; int cell;
for(i=1;i<H-1;i++) { for(j=1;j<W-1;j++) { cell=count_cell(j,i); map2[i][j]=(cell==3||cell==2&&map[i][j]==1); } }
memcpy(map,map2,H*W*sizeof(int)); }
void printf_map(void) { for(int i=0;i<H;i++) { for(int j=0;j<W;j++) { if(map[i][j])printf("¡ö"); else printf(" "); }
printf("\n"); } }
int main() { HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE); COORD zore = {0,0};
CONSOLE_CURSOR_INFO cci; cci.dwSize=sizeof(cci); cci.bVisible=FALSE; SetConsoleCursorInfo(handle,&cci);
make_map();
int loop=0;
while(1) { SetConsoleCursorPosition(handle,zore);
printf_map();
updata_map();
printf("loop:%d",loop++); getchar(); } }
|