当前位置: 代码迷 >> C语言 >> 请教问题,谢谢!
  详细解决方案

请教问题,谢谢!

热度:137   发布时间:2005-04-12 14:33:00.0
请教问题,谢谢!

#include <stdio.h> #include <conio.h> char B(int,int); int A(void); void main() { int x,y; printf("%c",A()); }

char B(int x1,int y1) { char key; gotoxy(x1,y1); printf("Press any key:"); key=getch(); return key; }

int A(void) { int key; int x=20,y=10; key=B(x,y); return key; } 这是一个关于光标的程序,但是这个程序只能在Turbo C下运行,不能在VC++6.0运行了,因为VC++6.0已经没有gotoxy这个函数,要是不用gotoxy这个函数,能编写出同等功能的程序吗? 可以的话,请高手指点,谢谢!

[此贴子已经被作者于2005-4-12 22:29:20编辑过]


----------------解决方案--------------------------------------------------------
  相关解决方案