首页上一页 1 下一页尾页 1 条记录 1/1页
有没大神帮我看一下错在哪
发表在C语言图书答疑
2018-03-19 悬赏:10 学分
《C语言项目开发实战入门》第1章 趣味俄罗斯方块
是否精华
是
否
版块置顶:
是
否
#include <stdio.h>
#include <windows.h>
int color(int c);
void DrwaGameFrame();
void title();
void gotoxy(int x,int y);
#define FrameX 13
#define FrameY 8
#define Frame_height 20
#define Frame_width 18
void gotoxy(int x,int y)
{
COORD pos;
pos.X = x;
pos.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),pos);
}
int main()
{
gotoxy(13,5);
printf("your mum boom");
}
void title()
{
color(11);
gotoxy(24,3);
printf("my dick like RPG");
color(11);
gotoxy(13,6);
printf("my dick like AK");
}
int main()
{
title();
}