// game of life.cpp
//function head
#include <stdio.h>standard input &output输入输出)
#include <stdlib.h>(定义杂项函数及内存分配函数)
#include <windows.h>(对话框程序或者窗口程序)
#include <time.h>(从系统时钟获取时间方式)
#include <ctype.h>(字符函数)
//define the size of the two-dimensional array(定义大小的二维数组)
#define SIZE 40
void rule(int array[SIZE][SIZE]);//function prototype(函数原型)
void SetColor(unsigned short ForeColor=5,unsigned short BackGroundColor=2)  //change color(改变颜)
{
HANDLE hCon = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hCon,ForeColor|BackGroundColor);
}
int main()
{
    int data[SIZE][SIZE]={0};//0->virus(病毒)  1->cell(细胞)  2->boundary(边界)
    int i,j,instruct;
    srand(time(NULL));//use the current time to seed the random number generator
使用当前时间种子的随机数发生器)
   
    for(i=0;i<=SIZE-1;i++){
        for(j=0;j<=SIZE-1;j++){
            if(i*j==0||i==SIZE-1||j==SIZE-1){
                data[i][j]=22;
            }//end if(如果结束)
            else
                data[i][j]=11*(rand()%2);
        }//end for(结束)
    }//end for
    system("mode con cols=100  & color 0f");//to set the size and the color of the window (设置大小和颜的窗口)
   
    //input a random number except 0 to continue the game(输入一个随机数除0继续游戏)
    while(scanf("%d",&instruct)!=0){
        system("cls");//clear the screen
       
        for(i=0;i<=SIZE-1;i++){
            for(j=0;j<=SIZE-1;j++){
                if(data[i][j]%10==1){
                    SetColor(10);//function call(函数的调用)   
                    printf("%c ",6);//display the character(显示字符)
                }
                else if(data[i][j]%10==0){
                    SetColor(6);//function call(函数的调用)
                    printf("%c ",4);//display the character(显示字符)
                }
                else{
                    SetColor(3);//function call(函数的调用)
                    printf("%c ",3);//display the character(显示字符)
                }
                if(i*j==0||i==SIZE-1||j==SIZE-1){
                    ;
                }
                else
                    data[i][j]=(data[i][j]%10)*10;
            }
            printf("\n");
        }
        rule(data);//function call(函数的调用)
        printf("请输入1继续0结束\n");
    }//end while(结束时)
    return 0;
}
void rule(int array[SIZE][SIZE])
    int amount,i,j,k,l;
    for(i=1;i<=SIZE-2;i++){
            for(j=1;j<=SIZE-2;j++){
                amount=0;
                for(k=i-1;k<=i+1;k++){
                    for(l=j-1;l<=j+1;l++){
                        if(array[k][l]/10==1&&(k!=i||l!=j)){
                            amount++;
                        }//end if(如果结束)
游戏免费源码分享网站                    }//end for(结束)
                }//end for
                //** the rule of the game of life(游戏的规则生活)
                if(amount==3){
                    array[i][j]++;
                }
                else if(amount==2){
                    array[i][j]+=array[i][j]/10;
                }
                else
                    ;
            }//end for
        }//end for
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。