1 Star 0 Fork 0

李凌志 / llz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
feiji2.1.3.cpp 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
李凌志 提交于 2019-05-25 10:16 . feiji 4
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int position_x, position_y;
int bullet_x, bullet_y;
int enemy_x, enemy_y;
int high, width;
void startup()
{
high = 20;
width = 30;
position_x = high / 2;
position_y = width / 2;
bullet_x = 0;
bullet_y = position_y;
}
void show()
{
system("cls");
int i, j;
for(i = 0; i < high; i++)
{
for(j = 0; j < width; j++)
{
if((i == position_x) && (j == position_y))
printf("*");
else if((i == enemy_x) && (j == enemy_y))
printf("@");
else if((i = bullet_x) && (j == bullet_y))
printf("|");
else
printf(" ");
}
printf("\n");
}
}
void updateWithoutInput()
{
if(bullet_x > -1)
bullet_x--;
}
void updateWithInput()
{
char input;
if(kbhit())
{
input = getch();
if(input == 'a')
position_y--;
if(input == 'd')
position_y++;
if(input == 'w')
position_x--;
if(input == 's')
position_x++;
if(input == ' ')
{
bullet_x = position_x - 1;
bullet_y = position_y;
}
}
}
int main ()
{
startup();
while(1)
{
show();
updateWithoutInput();
updateWithInput();
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sanctions/llz.git
git@gitee.com:sanctions/llz.git
sanctions
llz
llz
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891