Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Aim: To implement a program to add two complex numbers using constructors.
Code:
class complex
{
int real;
int img;
public:
complex(int r=0, int i=0);
complex(complex c1, complex c2);
void display();
};
complex :: complex(int r,int i)
real=r;
img=i;
}
complex :: complex(complex c1,complex c2)
real=c1.real+c2.real;
img=c1.img+c2.img;
void complex :: display()
cout< } void main() { int r1,r2,i1,i2; clrscr(); cout<<"\nEnter first complex no:\nReal:"; cin>>r1; cout<<"Imaginary:"; cin>>i1; cout<<"\nEnter second complex no:\nReal:"; cin>>r2; cout<<"Imaginary:"; cin>>i2; complex c1(r1,i1); cout<<"\nFirst:\t\t"; c1.display(); cout<<"\nSecond:\t\t"; complex c2(r2,i2); c2.display(); complex c3(c1,c2); cout<<"\n----------------------\nAddition:\t"; c3.display(); getch(); } Output: Enter first complex no: Real:25 Imaginary:3 Enter second complex no: Real:12 Imaginary:71 First: 25+3i Second: 12+71i ---------------------- Addition: 37+74i
void main()
int r1,r2,i1,i2;
clrscr();
cout<<"\nEnter first complex no:\nReal:";
cin>>r1;
cout<<"Imaginary:";
cin>>i1;
cout<<"\nEnter second complex no:\nReal:";
cin>>r2;
cin>>i2;
complex c1(r1,i1);
cout<<"\nFirst:\t\t";
c1.display();
cout<<"\nSecond:\t\t";
complex c2(r2,i2);
c2.display();
complex c3(c1,c2);
cout<<"\n----------------------\nAddition:\t";
c3.display();
getch();
Output:
Enter first complex no:
Real:25
Imaginary:3
Enter second complex no:
Real:12
Imaginary:71
First: 25+3i
Second: 12+71i
----------------------
Addition: 37+74i
Exceptions. Your SVector class should throw four exceptions: 3.1. If the constructor size is invalid, then it will just allow the implicit STL bad_alloc exception to pass up to mai
At a shop of marbles, packs of marbles are prepared. Packets are named A, B, C, D, E …….. All packets are kept in a VERTICAL SHELF in random order. Any numbers of packets with thes
i need to do my home work
source code in c ?
We move a high quantity of large Video files (200mb - 2 GB each) across the internet. We have a Linux server (ubuntu) hosted in a datacenter (1Gbps) operating an FTP server. Our
hi i want wite a C++ program that get one logical phrase (included {x,y,z,w,1,0}) and simplify it! but i ''m confused! thanxs for anubody help me...
A string S is said to be "Super ASCII", if it contains the character frequency equal to their ascii values. String will contain only lower case alphabets (''a''-''z'') and the asci
A Padovan string P(n) for a natural number n is defined as: P(0) = ‘X’ P(1) = ‘Y’ P(2) = ‘Z’ P(n) = P(n-2) + P(n-3), n>2 where + denotes string concate program 1 : package test
print this pattern 1 01 101 0101
Question : (a) Define a Pointer. Provide an example of an integer pointer variable. (b) Give advantages of using pointers over arrays. (c) Declare an integer pointer
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd