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
~141 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for beast

yo i got this code right [code]#include <iostream> using namespace std; class Complex { double real1, real2, imag1, imag2; public: Complex(double, double, double, double); double addcomplex () { cout << real1 + real2 << " + " << imag1 + imag2 << "i" << endl; } double subcomplex () { …

Member Avatar for sarehu
0
141