用c++在控制台打印一个等腰三角形,可以用键盘控制它上下左右移动

 我来答
匿名用户
2017-05-30
展开全部
#include<iostream>
#include<windows.h>
#include<conio.h>
#include<time.h>
#include<string>
using namespace std;

int l,r;
char a[150][150],ch;
void HideCursor()
{
CONSOLE_CURSOR_INFO cursor_info = {1, 0};
SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}
int main()
{
system("title 兄弟我尽力了."); //显示标题
HideCursor(); //隐藏光标
a[1][1]='a';
l=1;r=1;
cout<<l<<" "<<r<<endl;
for (int i=1;i<=10;i++)
{
for (int j=1;j<=10;j++)
cout<<a[i][j];cout<<endl;
}
while (1==1)
{
ch=_getch();
system("cls"); //刷新屏幕
a[l][r]=' ';
if (ch=='w'&&l-1>0) l--;
if (ch=='s'&&l+1<11) l++;
if (ch=='a'&&r-1>0) r--;
if (ch=='d'&&r+1<21) r++;
cout<<l<<" "<<r<<endl;
a[l][r]='a';
for (int i=1;i<=10;i++)
{
for (int j=1;j<=21;j++)
cout<<a[i][j];cout<<endl;
}

}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式