c++中如何在win32控制台用键盘上下左右键控制一个字符移动,求一可在vc++6.0上执行的完整简洁可编译代码。
2个回答
展开全部
while(1)
{
ch=getch(); //输入
else if(ch==72) {ty=y-1; tx=x;} //上
else if(ch==80) { ty=y+1; tx=x;} //下
else if(ch==75) {tx=x-1;ty=y;} //左
else if(ch==77) { tx=x+1; ty=y;} //右
else if(ch==27) break ; //按Esc退出循环
if(。。。)//判断是否出界
{
gotoxy(x,y); printf(" ");
x=tx; y=ty;
gotoxy(x,y); printf(" 。");
}
}
void gotoxy(int x,int y) //定位光标
{
COORD position;
position.X=x; position.Y=y;
SetConsoleCursorPosition(out, position);
}
{
ch=getch(); //输入
else if(ch==72) {ty=y-1; tx=x;} //上
else if(ch==80) { ty=y+1; tx=x;} //下
else if(ch==75) {tx=x-1;ty=y;} //左
else if(ch==77) { tx=x+1; ty=y;} //右
else if(ch==27) break ; //按Esc退出循环
if(。。。)//判断是否出界
{
gotoxy(x,y); printf(" ");
x=tx; y=ty;
gotoxy(x,y); printf(" 。");
}
}
void gotoxy(int x,int y) //定位光标
{
COORD position;
position.X=x; position.Y=y;
SetConsoleCursorPosition(out, position);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询