1 Star 0 Fork 0

李凌志 / llz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
feiji 4.cpp 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
李凌志 提交于 2019-05-24 17:13 . feiji 4
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main ()
{
int i, j;
int x = 5;
int y = 10;
char input;
int isFire = 0;
int ny = 5; //第一个靶子,放在第一行的ny列上
int isKilled = 0;
while(1)
{
system("cls");
if(!isKilled)
{
for(j = 0; j < ny; j++)
printf(" ");
printf("+\n");
}
if(isFire == 0) //输出飞机上面的空行
{
for(i = 0; i < x; i++)
printf("\n");
}
else
{
for(i = 0; i < x; i++) //输出飞机上面的激光竖线
{
for(j = 0; j < y; j++)
printf(" ");
printf(" |\n");
}
if(y + 2 == ny)
isKilled = 1;
isFire = 0;
}
for(j = 0; j < y; j++)
printf(" ");
printf(" *\n");
for(j = 0; j < y; j++)
printf(" ");
printf("*****\n");
for(j = 0; j < y; j++)
printf(" ");
printf(" *** \n");
if(kbhit())
{
input = getch();
if(input == 'a')
y--;
if(input == 'd')
y++;
if(input == 'w')
x--;
if(input == 's')
x++;
if(input == ' ')
isFire = 1;
}
}
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