DEV-C++怎么用gotoxy函数 5

gotoxy()只能在TC编译器下使用,但我用的是DEV-C++编译器,谁能讲下DEV-C++里面有什么函数可以实现gotoxy()函数的功能?或者能不能在TC编译器里的... gotoxy()只能在TC编译器下使用,但我用的是DEV-C++编译器,谁能讲下DEV-C++里面有什么函数可以实现gotoxy()函数的功能?或者能不能在TC编译器里的图形库里找到gotoxy()函数看它怎么写的然后自己写一个,做个头文件??我找不到gotoxy()怎么写的,也不知道DEV-C编译器的那个函数能实现gotoxy()这个函数的功能,唉,有点啰嗦,还请各位大虾赐教。。 展开
 我来答
zxpointer
2010-07-11 · TA获得超过4100个赞
知道大有可为答主
回答量:1868
采纳率:33%
帮助的人:1195万
展开全部
不行的,这么做是不可以的,唯一的方法就是用windows程序设计中的GDI来实现了,不过,这又是一个新的课程了,要学会恐怕你得花点时间
luanma11111
2010-07-19
知道答主
回答量:45
采纳率:0%
帮助的人:15.3万
展开全部
控制台:清屏, gotoxy

#include <windows.h>
#include <stdio.h>
#include <string.h>

void Cls(HANDLE hConsole);
void gotoxy(HANDLE hOut, int x, iny y);

int main()
{
DWORD state = 0, res;
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);

Cls(hOut);

gotoxy(hOut, 5, 5);
printf("position: 5, 5\n");

CloseHandle(hOut);
}

void Cls(HANDLE hConsole)
{
COORD coordScreen = {0, 0};

BOOL bSuccess;
DWORD cCharsWritten;
CONSOLE_SCREEN_BUFFER_INFO csbi;
DWORD dwConSize;

bSuccess = GetConsoleScreenBufferInfo(hConsole, &csbi);
dwConSize = csbi.dwSize.X * csbi.dwSize.Y;

bSuccess = FillConsoleOutputCharacter(hConsole, (TCHAR) ' ', dwConSize, coordScreen, &cCharsWritten);
bSuccess = GetConsoleScreenBufferInfo(hConsole, &csbi);
bSuccess = FillConsoleOutputAttribute(hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten);
bSuccess = SetConsoleCursorPosition(hConsole, coordScreen);
}

void gotoxy(HANDLE hOut, int x, iny y)
{
COORD pos;
pos.X = x;
pos.Y = y;
SetConsoleCursorPosition(hOut, pos); /* 设置光标位置 */
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式