国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

利用a、s、w、d來控制移動 按下空格會發(fā)射子彈 最簡單的語法用心編寫也會有好的程序

2019-11-08 02:16:04
字體:
供稿:網(wǎng)友

利用a、s、w、d來控制移動 按下空格會發(fā)射子彈 最簡單的語法用心編寫也會有好的程序

#include<stdio.h>#include<conio.h>#include<stdlib.h>void PRint(int a[][33]){system("cls");//清屏int i,j;for(i=0;i<13;i++){for(j=0;j<33;j++){if(a[i][j]==0)printf(" ");if(a[i][j]==1)printf("*");if(a[i][j]==2)printf("|");//這個是子彈}printf("/n");}}void main(){int scr[13][33]={0};int position_x,position_y;int bullet_x,bullet_y;position_x=5;position_y=15;scr[position_x][position_y]=1;print(scr);char input;while(1){  if(kbhit())  {     switch(getch()) {       case'a':       scr[position_x][position_y]=0;       position_y--;       scr[position_x][position_y]=1;       print(scr);       break;//向左移動       case'd':       scr[position_x][position_y]=0;       position_y++;       scr[position_x][position_y]=1;       print(scr);       break;//向右移動       case'w':       scr[position_x][position_y]=0;       position_x--;       scr[position_x][position_y]=1;       print(scr);       break;//向上移動       case's':       scr[position_x][position_y]=0;       position_x++;       scr[position_x][position_y]=1;       print(scr);       break;//向下移動case' ':bullet_x=position_x-1;bullet_y=position_y;scr[bullet_x][bullet_y]=2;print(scr);break;//按空格發(fā)射子彈 }  }  if(bullet_x>=0)//子彈的運動 { scr[bullet_x][bullet_y]=0; bullet_x--; scr[bullet_x][bullet_y]=2; print(scr); }}/*while(position_x<13){scr[position_x][position_y]=0;position_x++;scr[position_x][position_y]=1;print(scr);}*/}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 时尚| 阿拉善右旗| 柳州市| 开远市| 乌兰浩特市| 鹤庆县| 东安县| 洛隆县| 永新县| 黄大仙区| 舟曲县| 青阳县| 乌拉特中旗| 建始县| 嘉定区| 卓资县| 宁明县| 绿春县| 新昌县| 江口县| 三都| 江华| 临泽县| 德清县| 泌阳县| 长顺县| 阜南县| 伊通| 绥芬河市| 长治县| 秦皇岛市| 吴堡县| 南昌市| 惠水县| 晋中市| 潞城市| 繁昌县| 娄底市| 台东县| 上栗县| 安平县|