#include<stdio.h>
int main()
{
void gotoxy(int x,int y); //设置光标位置
int color(int c); //更改文字颜色
void printsnake(); //字符画---蛇
/**
* 设置光标位置
*/
void gotoxy(int x,int y)
{
COORD c;
c.X=x;
c.Y=y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),c);
}
/**
* 文字颜色函数 此函数的局限性:1、只能Windows系统下使用 2、不能改变背景颜色
*/
int color(int c)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), c); //更改文字颜色
return 0;
}
/*
* 字符画---蛇
*/
void printsnake()
{
gotoxy(35,1);
color(6);
printf("/^\\/^\\"); //蛇眼睛
gotoxy(34,2);
printf("|__| O|"); //蛇眼睛
gotoxy(33,2);
color(2);