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

I'm trying to compile the following code that I wrote out: [CODE]#include <iostream> #include <cmath> #include <iomanip> using namespace std; void gauss(double, double, double, int); int main() { const int n1 = 4; double prompt; double A1[n1][n1] = {{3,0,3,-4},{0,1,1,1},{1,1,1,2},{2,3,1,3}}; double b1[n1] ={7,0,6,6}; double x1[n1]; gauss(A1, x1, b1, n1); cout << …

Member Avatar for philosafari
0
110