0% found this document useful (0 votes)
25 views

Plagiarism Scan Report: Content Checked For Plagiarism

This plagiarism scan report summarizes a document that implements a tic-tac-toe game in C++. The report finds the content to be 100% unique with no ignored URLs. It scans 489 words over 2974 characters of code that defines a game board, checks for a winner, and allows two players to alternate making moves until the game is won or a draw.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Plagiarism Scan Report: Content Checked For Plagiarism

This plagiarism scan report summarizes a document that implements a tic-tac-toe game in C++. The report finds the content to be 100% unique with no ignored URLs. It scans 489 words over 2974 characters of code that defines a game board, checks for a winner, and allows two players to alternate making moves until the game is won or a draw.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Plagiarism Scan Report

Summary
Report Genrated Date 30 May, 2017
Plagiarism Status 100% Unique
Total Words 489
Total Characters 2974
Any Ignore Url Used

m
Content Checked For Plagiarism:

co
#include
using namespace std;

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

int checkwin(); ol
void board();
To
int main()
{
int player = 1,i,choice;
eo

char mark;
do
{
lS

board();
player=(player%2)?1:2;
al

cout <cin >> choice;


Sm

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;

m
else
{

co
cout<

s.
ol
To
eo
lS
al
Sm

You might also like