tic tac toe game project report ppt
#1

please I need project report for tic tac toe game
Reply
#2
tic tac toe game project report ppt

#include <iostream>
using namespace std;

char square[10] = {'o','1','2','3','4','5','6','7','8','9'};

int checkwin();
void board();

int main()
{
int player = 1,i,choice;

char mark;
do
{
board();
player=(player%2)?1:2;

cout << "Player " << player << ", enter a number: ";
cin >> choice;

mark=(player == 1) ? 'X' : 'O';

if (choice == 1 && square[1] == '1')

square[1] = mark;
else if (choice == 2 && square[2] == '2')

square[2] = mark;
else if (choice == 3 && square[3] == '3')

square[3] = mark;
else if (choice == 4 && square[4] == '4')

square[4] = mark;
else if (choice == 5 && square[5] == '5')

square[5] = mark;
else if (choice == 6 && square[6] == '6')

square[6] = mark;
else if (choice == 7 && square[7] == '7')

square[7] = mark;
else if (choice == 8 && square[8] == '8')

square[8] = mark;
else if (choice == 9 && square[9] == '9')

square[9] = mark;
else
{
cout<<"Invalid move ";

player--;
cin.ignore();
cin.get();
}
i=checkwin();

player++;
}while(i==-1);
board();
if(i==1)

cout<<"==>\aPlayer "<<--player<<" win ";
else
cout<<"==>\aGame draw";

cin.ignore();
cin.get();
return 0;
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: toe separators canada, seminar on game ppt, abstract of tic tac toe game, snack game on android report, electronic tic tac toe, abstract of tic tac toe gameharmacy day, sanke game report,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
Thumbs Up online catering management system on php with report and source code and ppt 4 8,805 29-04-2017, 10:59 AM
Last Post: jaseela123d
  beauty parlour project report in hindi 2 1,178 14-07-2016, 01:00 PM
Last Post: jaseela123d
  panic alarm mini project report pdf or ppt 2 1,873 14-07-2016, 11:54 AM
Last Post: jaseela123d
  use of recovered tyres in soil stabilisation seminars report and ppt pdf 2 894 13-07-2016, 01:17 PM
Last Post: jaseela123d
  cnc industrial training report ppt 1 598 13-07-2016, 09:58 AM
Last Post: visalakshik
  fingerprint verification system vb net project report jaseela123d 0 733 05-07-2016, 03:38 PM
Last Post: jaseela123d
  panic alarm mini project report pdf or ppt 1 970 05-07-2016, 12:27 PM
Last Post: visalakshik
  panic alarm mini project report pdf or ppt 1 906 04-07-2016, 04:01 PM
Last Post: visalakshik
  sonication seminars report ppt 1 555 27-06-2016, 10:56 AM
Last Post: seminar report asees
  variable dc power supply using ic lm317 project report in pdf format 1 817 23-06-2016, 11:22 AM
Last Post: seminar report asees

Forum Jump: