代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <windows.h>
#include <time.h>
#define High 25
#define Width 50
int cells[High][Width],z=50,flag=0;
void gotoxy(int x,int y)
{
HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
COORD pos;
pos.X = x;
pos.Y = y;
SetConsoleCursorPosition(handle,pos);
}
void startup()
{
int i,j;
for (i=0;i<High;i++)
for (j=0;j<Width;j++)
{
cells[i][j] = 1;
}
}
void show()
{
gotoxy(0,0);
int i,j;
for (i=1;i<=High-1;i++)
{
for (j=1;j<=Width-1;j++)
{
if (cells[i][j]==1)
printf("*");
else
printf(" ");
}
printf("\n");
}
Sleep(z);
}
void updateWithoutInput()
{
int NewCells[High][Width];
int NeibourNumber;
int i,j;
for (i=1;i<=High-1;i++)
{
for (j=1;j<=Width-1;j++)
{
NeibourNumber = cells[i-1][j-1] + cells[i-1][j] + cells[i-1][j+1]
+ cells[i][j-1] + cells[i][j+1] + cells[i+1][j-1] + cells[i+1][j] + cells[i+1][j+1];
if (NeibourNumber==3)
NewCells[i][j] = 1;
else if (NeibourNumber==2)
NewCells[i][j] = cells[i][j];
else
NewCells[i][j] = 0;
}
}
NeibourNumber = cells[i-1][j-1] + cells[i-1][j] + cells[i-1][j+1]
+ cells[i][j-1] + cells[i][j+1] + cells[i+1][j-1] + cells[i+1][j] + cells[i+1][j+1];
if(High<=5&&Width<=5)
{
if(NeibourNumber==1||NeibourNumber==2)
NewCells[i][j] = 1;
}
for (i=1;i<=High-1;i++)
for (j=1;j<=Width-1;j++)
cells[i][j] = NewCells[i][j];
}
void updateWithInput()
{
char input;
if(kbhit())
{
input = getch();
if(input == '+')
z--;
if(input == '-')
z++;
if(input == 'R')
system("pause");
if(input == 27)
flag=1;
return;
}
}
int main()
{
startup();
while (1)
{
show();
updateWithoutInput();
updateWithInput();
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。