C++五子棋 1.0版 (目前仅支持双人)

文章详细描述了一个使用C++编写的控制台版井字棋(Tic-Tac-Toe)游戏,包括加载动画、游戏规则以及判断胜负的功能。
摘要由CSDN通过智能技术生成
#include<bits/stdc++.h>
#include<windows.h> 
using namespace std;
char a[21][21];
void loading()
{
	cout<<"loading... (0%) \n\n 作者:young__kacker";
	Sleep(600); 
	system("cls");
	for(int i=0;i<=100;i++)
	{
		int x=rand()%(100-i+1)+i;
		i=x;
		cout<<"loading... ("<<i<<"%)\n";
		for(int j=1;j<=i;j++)
		{
			cout<<'.'; 
		}
		cout<<"\n作者:young__kacker";
		Sleep(500);
		system("cls"); 
	} 
}
int winner()
{
	//3为满,2为x,1为o,0为平
	bool flag=true;
	for(int i=1;i<=20;i++)
	{
		for(int j=1;j<=20;j++)
		{
			if(a[i][j]=='.')
			{
				flag=false;
				continue; 
			}
			if(a[i][j]=='x')
			{
				if(a[i][j]==a[i+1][j+1]&&a[i+1][j+1]==a[i+2][j+2]&&a[i+2][j+2]==a[i+3][j+3]&&a[i+3][j+3]==a[i+4][j+4])
				{
					return 2;
				}
				if(a[i][j]==a[i+1][j-1]&&a[i+1][j-1]==a[i+2][j-2]&&a[i+2][j-2]==a[i+3][j-3]&&a[i+3][j-3]==a[i+4][j-4])
				{
					return 2;
				}
				if(a[i][j]==a[i+1][j]&&a[i+1][j]==a[i+2][j]&&a[i+3][j]==a[i+2][j]&&a[i+3][j]==a[i+4][j])
				{
					return 2;
				}
				if(a[i][j]==a[i][j+1]&&a[i][j+1]==a[i][j+2]&&a[i][j+2]==a[i][j+3]&&a[i][j+3]==a[i][j+4])
				{
					return 2;
				}
			}
			if(a[i][j]=='o')
			{
				if(a[i][j]==a[i+1][j+1]&&a[i+1][j+1]==a[i+2][j+2]&&a[i+2][j+2]==a[i+3][j+3]&&a[i+3][j+3]==a[i+4][j+4])
				{
					return 1;
				}
				if(a[i][j]==a[i+1][j-1]&&a[i+1][j-1]==a[i+2][j-2]&&a[i+2][j-2]==a[i+3][j-3]&&a[i+3][j-3]==a[i+4][j-4])
				{
					return 1;
				}
				if(a[i][j]==a[i+1][j]&&a[i+1][j]==a[i+2][j]&&a[i+3][j]==a[i+2][j]&&a[i+3][j]==a[i+4][j])
				{
					return 1;
				}
				if(a[i][j]==a[i][j+1]&&a[i][j+1]==a[i][j+2]&&a[i][j+2]==a[i][j+3]&&a[i][j+3]==a[i][j+4])
				{
					return 1;
				}
			}
		}
	}
	if(flag=false)
	{
		return 3;
	}
	return 0;
}
int main()
{
	srand(time(NULL)); 
	loading();
	cout<<"loading... (100%)  作者:young__kacker";
	Sleep(1000); 
	system("cls");
	for(int i=1;i<=20;i++)
	{
		for(int j=1;j<=20;j++)
		{
			a[i][j]='.';
		}
	}
	int tmp=0;
	while(1)
	{
		cout<<"   ";
		for(int i=1;i<=20;i++)
		{
			cout<<i;
			if(i/10==0)
			{
				cout<<"  ";
			}
			else
			{
				cout<<" ";
			}
		} 
		cout<<endl;
		for(int i=1;i<=20;i++)
		{
			for(int j=0;j<=20;j++)
			{
				if(j==0)
				{
					cout<<i;
					if(i/10==0)
					{
						cout<<"  ";
					}
					else 
					{
						cout<<" ";
					}
					continue;
				}
				cout<<a[i][j]<<"  ";
			}
			cout<<endl; 
		}
		int cnt=winner();
		if(cnt==1)
		{
			cout<<"\no 一方胜利\n 游戏结束\n作者:young__kacker";
			return 0; 
		}
		if(cnt==2)
		{
			cout<<"\nx 一方胜利\n 游戏结束\n作者:young__kacker";
			return 0;
		}
		if(cnt==3)
		{
			cout<<"双方打平\n游戏结束\n作者:young__kacker";
			return 0; 
		}
		if(tmp%2==1)
		{
			cout<<"\n请先输入行,在输入列(空格隔开)(  x  方)\n          作者:young__kacker\n";
		}
		if(tmp%2==0)
		{
			cout<<"\n请先输入行,在输入列(空格隔开)(  o  方)\n          作者:young__kacker\n";
		}
		int n,m;
		cin>>n>>m;
		if(a[n][m]!='.')
		{
			cout<<"输入的点不合法,请重新输入(等待两秒)\n";
			Sleep(2000); 
			system("cls");
			continue; 
		}
		else if(tmp%2==0)
		{
			a[n][m]='o';
		}
		else if(tmp%2==1)
		{
			a[n][m]='x';
		}
		system("cls");
		tmp++;
	}
	return 0;
} 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值