使用Gotoxy(int x,int y)

时间:2014-08-15 15:06:41

标签: c conio

我是C的新手.gotoxy功能的用途是什么?我看过它只能在控制台中使用。那是什么意思?有人能给我一个以合法的方式使用它的例子吗?

2 个答案:

答案 0 :(得分:4)

您的Google技能很弱。尝试" gotoxy conio man":http://code-reference.com/c/conio.h/gotoxy

  

<强> gotoxy

     

void gotoxy(int x, int y);

     

将光标放在屏幕上的所需位置。

示例代码:

#include <stdio.h>
#include <conio.h>

int main( void )
{
   int x, y;
   x = 42;
   y = 42;
   clrscr();
   gotoxy(x, y);

   printf("gotoxy jumps to cursor position x42 y42.");

   getch();
   return 0;
}

答案 1 :(得分:-3)

此功能可将光标放在屏幕上的所需位置。可以使用void gotoxy(int x, int y)函数更改光标位置,其中(x, y)是我们要放置光标的位置。