Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions 2021/Fall/6a.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ using namespace std;

class Complex {
private :
int real, imaginary;
int real1, imaginary1;
int sum_real, sum_imaginary;
int real;
imaginary;
int real1;
imaginary1;
int sum_real;
sum_imaginary;
public :
Complex () {
real = 5;
Expand Down Expand Up @@ -44,4 +47,4 @@ int main () {
c.display();
return 0;

}
}