在c++控制台程序下如何用键盘方向键控制图标上下移动
2016-10-28
展开全部
可以用gotoxy函数移动光标。
1、函数名:gotoxy
原型:extern void gotoxy(int x, int y);
用法:#include <system.h>
功能:将光标移动到指定位置说明:gotoxy(x,y)将光标移动到指定行y和列x。设置光标到文本屏幕的指定位置,其中参数x,y为文本屏幕的坐标。
gotoxy(0,0)将光标移动到屏幕左上角
2、例程:
//这个例子将在屏幕中央输出“hello world”
#include <stdio.h>
#include <conio.h>
#include <system.h>
int main(){
clrscr();
gotoxy(35, 12);
cputs("Hello world");
getch();
return 0;
}
1、函数名:gotoxy
原型:extern void gotoxy(int x, int y);
用法:#include <system.h>
功能:将光标移动到指定位置说明:gotoxy(x,y)将光标移动到指定行y和列x。设置光标到文本屏幕的指定位置,其中参数x,y为文本屏幕的坐标。
gotoxy(0,0)将光标移动到屏幕左上角
2、例程:
//这个例子将在屏幕中央输出“hello world”
#include <stdio.h>
#include <conio.h>
#include <system.h>
int main(){
clrscr();
gotoxy(35, 12);
cputs("Hello world");
getch();
return 0;
}
追问
那怎么用键盘控制呢,感觉这个好像不适用于我的问题。。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询