console五子棋

假期实在无聊,想起大一那会儿学得C语言,安装好环境,搞起来。

#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <conio.h>
#include <windows.h>
using namespace std;

//cout<<"○×●+←→↓↑"<<endl;

//全局数组用来存储棋盘数据(25*25=625)数组取值为-1、0、1(0表示空+、-1表示黑×、1表示白○)
int chess[625];//25*25(棋盘)
//全局变量用来存储当前光标位置(1到25)
int chess_x=13;
int chess_y=13;
int round=0;//回合(偶数为黑×,奇数为白○)

//循环变量
int i,j,k;

int flashChess()
{
	//根据数组chess数组来刷新界面
	cout<<"●●";
	for(i=1;i<=25;++i)
	{
		if(i==chess_x)
		{
			cout<<"↓";
		}
		else
		{
			cout<<"  ";
		}
	}
	cout<<endl;
	cout<<"●●●●●●●●●●●●●●●●●●●●●●●●●●●●"<<endl;
	for(i=0;i<25;++i)
	{
		printf("%2.d●",i+1);
		for(j=0;j<25;++j)
		{
			//棋子分布(0表示空+、-1表示黑×、1表示白○)
			//cout<<"  ";
			if(chess[i*25+j]==0)
				cout<<"  ";
			if(chess[i*25+j]==-1)
				cout<<"×";
			if(chess[i*25+j]==1)
				cout<<"○";
		}
		cout<<"●";
		if(chess_y==i+1)
			cout<<"←";
		cout<<endl;
	}
	cout<<"●●●●●●●●●●●●●●●●●●●●●●●●●●●●"<<endl;
	return 1;
}

int input()
{
	//根据chess_x和chess_y来输入对应棋子
	
	return 1;
}

int flashPost()
{
	int temp = getch();
	cout<<temp;
	if(temp==97||temp==65)//A
	{
		if(chess_x>1)
			--chess_x;
	}
	else if(temp==100||temp==68)//D
	{
		if(chess_x<25)
			++chess_x;
	}
	else if(temp==119||temp==87)//W
	{
		if(chess_y>1)
			--chess_y;
	}
	else if(temp==115||temp==83)//S
	{
		if(chess_y<25)
			++chess_y;
	}
	else if(temp==32)//空格
	{
		if(round%2==0 && chess[(chess_y-1)*25+chess_x-1]==0)//(偶数为黑×,奇数为白○)
		{
			chess[(chess_y-1)*25+chess_x-1]=-1;
			++round; 
		}
		if(round%2==1 && chess[(chess_y-1)*25+chess_x-1]==0)//(偶数为黑×,奇数为白○)
		{
			chess[(chess_y-1)*25+chess_x-1]=1;
			++round;
		}
	}

	return 1;
}

int main()
{
	
	
	while(1)
	{
		system("cls");
		flashChess();
		flashPost();
		printf("%8.d%8.d",chess_x,chess_y);
		//Sleep(1000);
	}
	
	return 1;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值