三九宝宝网宝宝教育教学论文

如何用C语言编写控制台小游戏

02月22日 编辑 39baobao.com

[如何用c语言编写一个n阶方阵求逆的程序]Rational ** Matrix1::inverse_matrix(Rational ** sourceMatrix,int numberOfRows, int numberOfColumns) { determinant temp1; Rational temp = temp1.result(sourceMatr...+阅读

//C语言实例:推箱子小游戏#include#include#include#include//行和列 #define ROW 10 #define COL 11 /* run this program using the console pauser or add your own getch, system("pause") or input loop */ /** ** */ //地图 char map[ROW][COL] = { "##########",//0 "### ##",//1 "### ##",//2 "##AX # ##",//3 "### ## ",//4 "##### #",//5 "## #",//6 "# ####",//7 "### ",//8 "##########" //9 //A:人 , X:箱子 } ; //打印地图 void showMap(); //接收小人的方向 char enterDirection(); //小人向上移动的方法 void moveToUp(); //小人向下移动的方法 void moveToDown(); //小人向右移动的方法 void moveToRight(); //小人向左移动的方法 void moveToLeft(); //当前小人的坐标 int currentPersonRow = 3; int currentPersonCol = 2; //当前箱子的坐标 int currentBoxRow = 3; int currentBoxCol = 3; int main(int argc, char *argv[]) { //system("clear"); printf("点击回车键开始游戏 ^_^\n\n"); //1代表运行 0停止 int flag = 1; while(flag==1){ //显示地图 showMap(); //接收小人的方向 char dir = enterDirection(); switch(dir){ //小人向上移动 case 'w': case 'W': moveToUp(); break; //小人向下移动 case 's': case 'S': moveToDown(); break; //小人向右移动 case 'd': case 'D': moveToRight(); break; //小人向左移动 case 'a': case 'A': moveToLeft(); break; //停止运行 case 'q': case 'Q': printf("你的智商真低!T_T\n"); flag = 0; break; } showMap(); if(currentBoxRow==8¤tBoxCol==9){ printf("你的智商真高^_^!!!"); flag = 0; } } } /* 方法的实现 */ //打印地图 void showMap(){ int i; for(i = 0;i

Q:退出"); printf("\n\n\n\n\n"); } //接收小人的方向 char enterDirection(){ //清除SCANF中的缓冲区 rewind(stdin); char dir; dir = getch(); //scanf("%c",&dir); return dir; } //小人向上移动的方法 void moveToUp(){ //小人的下一个坐标 int nextPersonCol = currentPersonCol; int nextPersonRow = currentPersonRow - 1; //箱子的下一个坐标 int nextBoxRow = currentBoxRow - 1; int nextBoxCol = currentBoxCol; //如果小人的下一个坐标是路 if(map[nextPersonRow][nextPersonCol]==' '){ map[nextPersonRow][nextPersonCol] = 'A'; map[currentPersonRow][currentPersonCol] = ' '; currentPersonRow = nextPersonRow; currentPersonCol = nextPersonCol; } //如果小人的下一个坐标是墙 if(map[nextPersonRow][nextPersonCol]=='#'){ //什么也不做 } //如果小人的下一个坐标是箱子 if(map[nextPersonRow][nextPersonCol]=='X'){ if(map[nextBoxRow][nextBoxCol] == ' '){ map[nextPersonRow][nextPersonCol] = 'A'; map[currentPersonRow][currentPersonCol] = ' '; map[nextBoxRow][nextBoxCol] = 'X'; map[currentBoxRow][currentBoxCol] = 'A'; currentPersonRow = nextPersonRow; currentPersonCol = nextPersonCol; currentBoxRow = nextBoxRow; currentBoxCol = nextBoxCol; } } } //小人向下移动的方法 void moveToDown(){ //小人的下一个坐标 int nextPersonCol = currentPersonCol; int nextPersonRow = currentPersonRow + 1; //箱子的下一个坐标 int nextBoxRow = currentBoxRow + 1; int nextBoxCol = currentBoxCol; //如果小人的下一个坐标是路 if(map[nextPersonRow][nextPersonCol]==' '){ map[nextPersonRow][nextPersonCol] = 'A'; map[currentPersonRow][currentPersonCol] = ' '; currentPersonRow = nextPersonRow; currentPersonCol = nextPersonCol; } //如果小人的下一个坐标是墙 if(map[nextPersonRow][nextPersonCol]=='#'){ //什么也不做 } //如果小人的下一个坐标是箱子 if(map[nextPersonRow][nextPersonCol]=='X'){ if(map[nextBoxRow][nextBoxCol] == ' '){ map[nextPersonRow][nextPersonCol] = 'A'; map[currentPersonRow][currentPersonCol] = ' '; map[nextBoxRow][nextBoxCol] = 'X'; map[currentBoxRow][currentBoxCol] = 'A'; currentPersonRow = nextPersonRow; currentPersonCol = nextPersonCol; currentBoxRow = nextBoxRow; currentBoxCol = nextBoxCol; } } } //小人向右移动的方法 void moveToRight(){ //小人的下一个坐标 int nextPersonCol = currentPersonCol + 1; int nextPersonRow = currentPersonRow; //箱子的下一个坐标 int nextBoxRow = currentBoxRow; int nextBoxCol = currentBoxCol + 1; //如果小人的下一个坐标是路 if(map[nextPersonRow][nextPersonCol]==' '){ map[nextPersonRow][nextPersonCol] = 'A'; map[currentPersonRow][currentPersonCol] = ' '; currentPersonRow = nextPersonRow; currentPersonCol = nextPersonCol; } //如果小人的下一个坐标是墙 if(map[nextPersonRow][nextPersonCol]=='#'){ //什么也不做 } //如果小人的下一个坐标是箱子 if(map[nextPersonRow][nextPersonCol]=='X'){ if(map[nextBoxRow][nextBoxCol]==' '){ map[...

以下为关联文档:

如何用易语言执行控制面板第一种方法:打开控制面板的方法:运行 (“rundll32.exe shell32.dll,Control_RunDLL”, 假, ) 第二种方法:执行控制面板网络连接项目的方法: .局部变量 shell, 对象 shell.创建 (“Shel...

如何用C语言编写一个求两个矩阵相乘的结果/* Matrix_main.cpp */ // #include #include #include #include /* #include */ void main(void) { int col, row, row_s; /* the column & row of the matrix */ int **pM...

如何用VS2012编写c语言打开vs2012——文件——新建——项目 单击(如zhidao图) 在对话框左侧分别找到模板——其他语言——visual c++——win32(如图) 选择“win32控制台应用程序”并设置好”名称“和...

如何用C语言编写一个软件1. 如果要写记分牌 最好使用的工具 visual studio 2010(推荐)微软官网有 可以下载中文版。 2. 如果只用c语言的话, 就要用win32 api编写。 简介: 1. C语言是一门通用计算机编程...

关于用C语言编写的小游戏的游戏代码如黑白棋贪吃蛇等我这儿有c语言的自写俄罗斯方块,请指教: #include #include #include #include #include #include #include #define ESC 0x011b #define UP 0x4800 #define DOWN 0x5000 #def...

如何用C语言对计算机的硬件进行控制#include <windows.h> #include <mmsystem.h> #pragma comment(lib, "WINMM.LIB") int main(int argc, char *argv[]) { mciSendString("Set cdaudio door open wait", NULL, 0,...

如何用微机汇编语言编写时钟程序assume cs:codesg,ds:data data segment db "00/00/00 00:00:00",'$' data ends codesg segment start: mov ax,data mov ds,ax mov cx,6 mov bx,0 mov ah,0 mov al,9 s: push...

如何用C语言编写一如图模型的推箱子游戏的程序/*TC环境下编的*/ #include #include #include #include #include #include typedef struct winer { int x,y; struct winer *p; }winer; char status [20][20]; char far *...

如何用c语言编写招聘信息系统谢谢了大神帮忙啊///////////////Function;////.0;//////Name: Cjob_rowtype class Cjob_rowtype { public: long m_iSuffix; //Effect: get ref of col. col is iSuffix /////////#pragma o...

推荐阅读
图文推荐