Your C++ program is to read the data, one group at a time into a 3X3 matrix and  determine if there is a winner in a game of tic-tac-toe.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

Two-Dimensional Array Problem
Given the following  data file:  (copy and paste it into a txt file)
OnesandZeros.txt
1 1 0 0 1 1 0 1 1
1 1 0 1 1 0 0 0 1
0 0 1 1 1 1 0 1 0
1 0 0 1 0 1 0 1 1
1  1 0 0 1 1 1 0
Your C++ program is to read the data, one group at a time into a 3X3 matrix and  determine if there is a winner in a game of tic-tac-toe.
A winner is defined as having all 1’s (or 0’s) in any row, all 1’s (or 0’s) in any column or all 1’s (or 0’s) in either diagonal

        

        

        


You must have the following functions in your program
A Readinfunction to fill the matrix
A Find RowWinner, pass it the matrix, the number of columns, and player number (0 or 1), this function returns true if any of the rows was all 1’s or 0’s, false otherwise
A Find ColWinner,  pass it the matrix, the number of columns, and player number (0 or 1), this function returns true if any of the columns was all 1’s or 0’s, false otherwise
A Find Diagonalwinner, pass it the matrix, the number of columns, and player number (0 or 1), The function returns true if either diagonal was all 1’s of all 0’s, false otherwise.
Using a loop, your main function will call
All the above functions. If RowWinner, ColWinner or Diagonalwinner returned true main will print:
We have a winner!!   it was Player number (0 or 1).
If all the functions returned false, main will print:
The game was tied.
You may assume that there are only 5 sets of data.

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Recurrence Relation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-engineering and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY