c++上下左右键控制字母

这篇文章展示了如何使用C++编写一个简单的控制台程序,该程序允许用户通过键盘的上、下、左、右箭头键控制屏幕上的一个字符‘o’移动。程序依赖于<conio.h>、<windows.h>库,使用GetStdHandle和SetConsoleCursorPosition函数改变光标位置,并通过getch()获取用户输入。
摘要由CSDN通过智能技术生成

#include <bits/stdc++.h>
#include <stdio.h>
#include <conio.h>
#include <windows.h>
#include <time.h>

首先,需要有合适的头文件

void gotoxy(int x, int y) {
    COORD coord;
    coord.X = x;
    coord.Y = y;
    SetConsoleCursorPosition( GetStdHandle( STD_OUTPUT_HANDLE ), coord );
}

然后需要有能随便移动到坐标(x,y)的子函数

a=getch();

最后需要知道以上这行代码是能实时获取控制者的指令

以下是完整代码:

#include <bits/stdc++.h>
#include <stdio.h>
#include <conio.h>
#include <windows.h>
#include <time.h>
using namespace std;
void gotoxy(int x, int y) {
	COORD coord;
	coord.X = x;
	coord.Y = y;
	SetConsoleCursorPosition( GetStdHandle( STD_OUTPUT_HANDLE ), coord );
}
int main(){
	cout<<"可在屏幕上移动"<<endl;
	cout<<"上下左右键 控制方向";
	_sleep(1000);
	system("cls");
	int x=5,y=5;
	gotoxy(5,5);
	cout<<"o";
	char a;
	while(a=getch()){
		if(a==72){
			system("cls");
			gotoxy(x,y-1);
			y--;
			cout<<"o";
		}else if(a==80){
			system("cls");
			gotoxy(x,y+1);
			y++;
			cout<<"o";
		}else if(a==75){
			system("cls");
			gotoxy(x-1,y);
			x--;
			cout<<"o";
		}else if(a==77){
			system("cls");
			gotoxy(x+1,y);
			x++;
			cout<<"o";
		}
	}
	return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值