华容道 1.0

第一次写c++小游戏代码,帮忙找一找bug,希望大家支持.

代码如下:

#include<bits/stdc++.h>
using namespace std;
int dt[5][5],f[16];
void yxsm();
void welcome(){
	for(int i=1;i<=10;i++)cout<<"\n";
	system("color 4");
	cout<<setw(65)<<"华容道\n";
	cout<<setw(70)<<"1.0\n";
	cout<<"\n"<<setw(71)<<"输入1开始.2游戏说明:";
	int n;cin>>n;
	if(n==2)yxsm();
	return;
}
void yxsm(){
	system("cls");
	system("color E");
	cout<<"把数字按顺序排;\n先输入要移动的数字,\n在输入移动方向.\n";
	cout<<"输入8向上走,\n输入4向左走,\n输入2向下走,\n输入6向右走,\n";
	system("pause");
	system("cls");
	welcome();
	return;
}
void sc(){
	
	for(int i=1;i<=10;i++)cout<<"\n";
	for(int i=1;i<=4;i++){
		cout<<setw(50)<<" ";
		for(int j=1;j<=4;j++){
			if(dt[i][j])cout<<setw(3)<<dt[i][j];
			else cout<<setw(3)<<" ";
		}
		cout<<"\n";
	}
}
void csh(){
	srand(time(NULL));
	for(int i=1;i<=4;i++)
		for(int j=1;j<=4;j++){
			int a=rand()%15;
			if(f[a]){
				int aa=0;
				while(f[aa])aa++;
				f[aa]=1;
				dt[i][j]=aa;
			}else{
				dt[i][j]=a;
				f[a]=1;
			}
		}
}
void hrd(){
	while(1){
		system("cls");
		sc();
		int a,b;cin>>a>>b;
		bool f=false;
		switch(b){
			case 8:{
				for(int i=2;i<=4;i++)
					for(int j=1;j<=4;j++){
						if(dt[i][j]!=a)continue;
						if(!dt[i-1][j]){
							dt[i][j]=0;
							dt[i-1][j]=a;
							f=true;
						}
					}
				break;
			}case 2:{
				for(int i=1;i<4;i++)
					for(int j=1;j<=4;j++){
						if(dt[i][j]!=a)continue;
						if(!dt[i+1][j]){
							dt[i][j]=0;
							dt[i+1][j]=a;
							f=true;
						}
					}
				break;
			}case 4:{
				for(int i=1;i<=4;i++){
					for(int j=2;j<=4;j++){
						if(dt[i][j]!=a)continue;
						if(!dt[i][j-1]){
							dt[i][j]=0;
							dt[i][j-1]=a;
							f=true;
						}
					}
				}
				break;
			}case 6:{
				for(int i=1;i<=4;i++)
					for(int j=1;j<=3;j++){
						if(dt[i][j]!=a)continue;
						if(!dt[i][j+1]){
							dt[i][j]=0;
							dt[i][j+1]=a;
							f=true;
						}
					}
				break;
			}
		}
		if(!f){
			system("cls"); 
			cout<<"What're you doing?\n";
			system("pause");
		}
		bool ff=true;int s=0;
		for(int i=1;i<=4;i++){
			for(int j=1;j<=4;j++){
				s++;
				if((s==16&&dt[i][j]==0)||dt[i][j]==s)continue;
				else{ff=false;break;}
			}
			if(!ff)break;
		}
		if(ff){
			system("color 6");
			system("cls");
			cout<<"You winner!!!\n";
			system("pause");
			return;
		}
	}
}
int main(){
	welcome();
	csh();
	system("cls");
	hrd();
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值