Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
naughts and crosses c++
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
j4-gillespie
naughts and crosses c++
Commits
0898966b
Commit
0898966b
authored
2 months ago
by
Joseph2.Gillespie@live.uwe.ac.uk
Browse files
Options
Downloads
Patches
Plain Diff
Delete naughts_and_crosses_c++
parent
4fe298fc
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
naughts_and_crosses_c++
+0
-118
0 additions, 118 deletions
naughts_and_crosses_c++
with
0 additions
and
118 deletions
naughts_and_crosses_c++
deleted
100644 → 0
+
0
−
118
View file @
4fe298fc
#include <iostream>
using namespace std;
char square[10] = {'0','1','2','3','4','5','6','7','8','9'};
int checkwin() {
if (square[1] == square[2] && square[2] == square[3]) {
return 1;
}
else if (square[4] == square[5] && square[5] == square[6]) {
return 1;
}
else if (square[7] == square[8] && square[8] == square[9]) {
return 1;
}
else if (square[1] == square[4] && square[4] == square[7]) {
return 1;
}
else if (square[2] == square[5] && square[5] == square[8]) {
return 1;
}
else if (square[3] == square[6] && square[6] == square[9]) {
return 1;
}
else if (square[1] == square[5] && square[5] == square[9]) {
return 1;
}
else if (square[3] == square[5] && square[5] == square[7]) {
return 1;
}
else if (square[1] != '1' && square[2] != '2' && square[3] != '3'
&& square[4] != '4' && square[5] != '5' && square[6] != '6'
&& square[7] != '7' && square[8] != '8' && square[9] != '9') {
return 0;
}
else {
return -1;
}
}
void board() {
system("cls");
cout << "\n\n\tNaughts and Crosses\n\n";
cout << "Player 1 (X) - Player 2 (O)" << endl << endl;
cout << endl;
cout << " | | " << endl;
cout << " " << square[1] << " | " << square[2] << " | " << square[3] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << square[4] << " | " << square[5] << " | " << square[6] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << square[7] << " | " << square[8] << " | " << square[9] << endl;
cout << " | | " << endl << endl;
}
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 << "Player " << --player << " wins!";
}
else {
cout << "Game draw!";
}
cin.ignore();
cin.get();
return 0;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment