记录学习贪吃蛇的一天

2022/3/19 6:31:29

本文主要是介绍记录学习贪吃蛇的一天,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<windows.h>
#define High 20
#define Width 30
int canvas[High][Width] = {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++) {
        canvas[i][0] = -1;
        canvas[i][Width - 1] = -1;
    }
    for (j = 0; j < Width; j++) {
        canvas[0][j] = -1;
        canvas[High-1][j]=-1;
    }
    canvas[High / 2][Width / 2] = 1;
    for (i = 1; i <=4; i++)
        canvas[High/2][Width/2 - i] = i + 1;
}
void show() {
    gotoxy(0, 0);
    int i, j;
    for (i = 0; i < High; i++)
    {
        for (j = 0; j < Width; j++) 
        {
            if (canvas[i][j] == 0)
                printf(" ");
            else if (canvas[i][j] == -1)
                printf("#");
            else if (canvas[i][j] == 1)
                printf("@");
            else if (canvas[i][j] > 1)
                printf("*");
        }
        printf("\n");
    }
}
void updateWitoutInput(){}
void updateWithInput(){}
int main(void)
{
    startup();
    while (1)
    {
        show();
            updateWitoutInput();
            updateWithInput();
    }
    return 0;
}     



这篇关于记录学习贪吃蛇的一天的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程