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
~304 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for lalala423

Hey all, So i created a program that performs matrix addition and subtraction. It compiles but when I try to run it, it shows "SEGMENTATION FAULT" Help Please! Here are my codes: Matrix.h [code] #ifndef MATRIX_H #define MATRIX_H class Matrix { private: const int numRows, numCols; int **data; public: //constructors …

Member Avatar for lalala423
0
160
Member Avatar for lalala423

Write a program that finds the greatest sum of three adjacent numbers in any direction (up, down, left, right, or diagonally) in a 20x20 grid of numbers. All input data must be obtained from the stdin prompt. You can feed in the data from a file by using input redirection. …

Member Avatar for pseudorandom21
0
144