实现了正常的游戏以及保存和读取功能
/* 黑白棋 */
#include
#include
int opponet(int player)
{
if(player==1)
{
return 2;
}
else
{
return 1;
}
}
void main()
{
int i,j,x,y,k,l;
int board[8][8]={0};
int player=1;
printf(" 0 1 2 3 4 5 6 7");
printf("\n");
for(i=0;i<8;i++)
{
printf("%d",i);
for(j=0;j<8;j++)
{
printf("[ ]",j);
}
printf("\n");
}
printf("1==Yes 2==No\n");
printf("continu Y or N:");
scanf("%d",&k);
if(k==1)
{
FILE*rp=fopen("H:\\a.txt","rt");
if(rp==0)
{
printf("can't open it\n");
return;
}
for(i=0;i<8;i++)
{
for(j=0;j<8;j++)
{
fscanf(rp,"",&board;[i][j]);
}
}
2022-06-21 20:04:04
253KB
c++黑白棋
1