标题: 刚学c的菜鸟的问题,请各位大侠帮帮忙 [打印本页] 作者: rocker_691 时间: 2004-11-10 20:56 标题: 刚学c的菜鸟的问题,请各位大侠帮帮忙 int main(void)
{
char done,ch,ch1;
printf("This is the game of Tic Tac Toe."
printf("You will be playing against the computer.\n"
done=' ';
label: init_matrix();
do
{
disp_matrix();
get_player_move();
done=check();/*see if winner*/
if(done!=' ') break;/*winner!*/
get_computer_move();
done=check();/*winner*/
}while(done==' ');