假期实在无聊,想起大一那会儿学得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;
}