【文件属性】:
文件名称:c++控制台下的黑白棋
文件大小:253KB
文件格式:ZIP
更新时间:2021-06-09 04:10:08
c++黑白棋
实现了正常的游戏以及保存和读取功能
/* 黑白棋 */
#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]);
}
}
【文件预览】:
黑白棋文本状
----test.cpp(4KB)
----Debug()
--------vc60.pdb(52KB)
--------vc60.idb(41KB)
--------test.obj(11KB)
--------test2.exe(192KB)
--------test2.ilk(199KB)
--------test2.pch(215KB)
--------test2.pdb(537KB)
----test.txt(0B)
----test2.plg(1KB)
----test2.dsw(518B)
----test2.dsp(4KB)
----test2.ncb(49KB)
----test2.opt(48KB)