• 大小: 305KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-16
  • 语言: C/C++
  • 标签: C++  

资源简介

#include"iostream.h" #include"chess.h" #include"rule.h" #include"result.h" void main(){ char ch; chess ch1('x'); chess ch2('o'); while(ch!='N'){ initboard(); qipan(); int k=1; while(1){ ch1.xiaqi();//'x'方先下 qipan(); if(ch1.judge()){ ch1.Wins(); ch2.Loses(); break; } if(k==5){//'x'方下了5次还未赢棋,即平局 ch1.Draws(); break; } ch2.xiaqi();//'o'后下 qipan(); if(ch2.judge()){ ch2.Wins(); ch1.Loses(); break; } k++; } ch1.show(); ch2.show(); cout<>ch; } }

资源截图

代码片段和文件信息

#include“iostream.h“
#include“chess.h“
#include“rule.h“
#include“result.h“
void main(){
char ch;
chess ch1(‘x‘);
chess ch2(‘o‘);
while(ch!=‘N‘){
initboard();
qipan();
int k=1;
while(1){
ch1.xiaqi();//‘x‘方先下
qipan();
if(ch1.judge()){
ch1.Wins();
ch2.Loses();
break;
}
if(k==5){//‘x‘方下了5次还未赢棋,即平局
ch1.Draws();
break;
}
ch2.xiaqi();//‘o‘后下
qipan();
if(ch2.judge()){
ch2.Wins();
ch1.Loses();
break;
}

k++;
}
ch1.show();
ch2.show();
cout<<“您想再玩一次吗?(Y/N)“;
cin>>ch;
}
}



























 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-06-13 09:42  三子棋\
     文件         671  2011-06-14 22:33  三子棋\1.cpp
     文件         263  2011-06-14 22:25  三子棋\chess.h
     目录           0  2011-06-13 09:42  三子棋\Debug\
     文件       18633  2011-06-14 23:24  三子棋\Debug\1.obj
     文件       58368  2011-06-14 23:24  三子棋\Debug\vc60.idb
     文件       61440  2011-06-14 23:24  三子棋\Debug\vc60.pdb
     文件      217139  2011-06-14 23:24  三子棋\Debug\三子棋.exe
     文件      269256  2011-06-14 23:24  三子棋\Debug\三子棋.ilk
     文件      244220  2011-06-13 10:35  三子棋\Debug\三子棋.pch
     文件      525312  2011-06-14 23:24  三子棋\Debug\三子棋.pdb
     文件        3375  2011-06-14 21:57  三子棋\init.dsp
     文件         533  2011-06-14 21:57  三子棋\init.dsw
     文件           0  2011-06-14 22:25  三子棋\init.h
     文件       33792  2011-06-14 21:57  三子棋\init.ncb
     文件       48640  2011-06-14 21:57  三子棋\init.opt
     文件         242  2011-06-14 21:57  三子棋\init.plg
     文件           0  2011-06-14 22:24  三子棋\init1.h
     文件           8  2011-06-14 22:31  三子棋\main.h
     文件         323  2011-06-14 22:33  三子棋\result.h
     文件        2439  2011-06-14 22:47  三子棋\rule.h
     文件        4453  2011-06-14 22:36  三子棋\三子棋.dsp
     文件         537  2011-06-13 09:42  三子棋\三子棋.dsw
     文件       50176  2011-06-14 23:25  三子棋\三子棋.ncb
     文件       54784  2011-06-14 23:25  三子棋\三子棋.opt
     文件        1261  2011-06-14 23:24  三子棋\三子棋.plg

评论

共有 条评论