Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~108 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for arucke20

This is what I have so far #include <iostream> #include <iomanip> using namespace std; const int NUM_SECTIONS = 3, NUM_ROWS = 5, NUM_COL = 9; int main() { int seatTable[NUM_SECTIONS][NUM_ROWS][NUM_COL] = { { { 100, 100, 100, 100, 100, 100, 100, 100, }, {100, 100, 100, 100, 100, 100, 100, …

Member Avatar for arucke20
0
108