Skip to main content

OOP 1

 Implement a class Complex which represents the Complex Number data type. Implement the following 

1. Constructor (including a default constructor which creates the complex number 0+0i). 

2. Overload operator+ to add two complex numbers.

3. Overload operator* to multiply two complex numbers.

4. Overload operators << and >> to print and read Complex Numbers.

   
 /*Implement a class Complex which represents the Complex Number data type.   
 Implement the following operations:   
 1. Constructor (including a default constructor which creates the complex number 0+0i).   
 2. Overloaded operator+ to add two complex numbers.   
 3. Overloaded operator* to multiply two complex numbers.   
 4. Overloaded << and >> to print and read Complex Numbers.*/  
   
   
 //@author: SPPU CSE GURU  
   
 #include<iostream>  
 using namespace std;  
   
 class complex  
 {  
      float real;  
      float img;  
      public:  
      friend complex operator+(complex,complex);  
      friend complex operator-(complex,complex);  
      friend complex operator*(complex,complex);  
      friend complex operator/(complex,complex);  
      friend ostream & operator<<(ostream&,complex&);  
      friend istream & operator>>(istream&,complex&);  
   
      complex()  
      {  
           real=0;  
           img=0;  
      }  
      ~complex(){}  
 };  
   
 complex operator+(complex c,complex d)  
 {  
      complex temp;  
      temp.real=d.real+c.real;  
      temp.img=d.img+c.img;  
      return temp;  
 }  
   
 complex operator-(complex c,complex d)  
 {  
      complex temp;  
      temp.real=c.real-d.real;  
      temp.img=c.img-d.img;  
      return temp;  
 }  
   
 complex operator*(complex c,complex d)  
 {  
      complex temp;  
      temp.real=c.real*d.real-c.img*d.img;  
      temp.img=c.real*d.img+c.img*d.real;  
      return temp;  
 }  
   
 complex operator/(complex c,complex d)  
 {  
      complex temp;  
      int mod=d.real*d.real+d.img*d.img;  
      d.img= -1*d.img;  
      temp=c*d;  
      temp.real/=mod;  
      temp.img/=mod;  
      return temp;  
 }  
   
 ostream & operator << (ostream &out, complex &c)  
 {  
   if(c.img>=0)  
        out<<c.real<<"+"<<c.img<<"i\n";  
   else  
        out<<c.real<<c.img<<"i\n";          //noted  
   return out;  
 }  
   
 istream & operator >> (istream &in, complex &c)  
 {  
   cout << "Enter Real Part ";  
   in >> c.real;                              //noted  
   cout << "Enter Imaginary Part ";  
   in >> c.img;  
   return in;  
 }  
   
 int main()  
 {  
      complex c1,c2,c3;  
      int ch;  
        
      cout<<c1;               //default constructor  
      cout<<c2;  
        
      cin>>c1;          //calling of operator overloading function  
      cin>>c2;  
      do  
      {  
           cout<<"Enter\n1.Addition\n2.Subtraction\n3.Multiplication\n4.Division\n0.Exit\n";  
           cout<<"Enter your choice: ";  
           cin>>ch;  
           switch(ch)  
           {  
                case 0:  
                break;  
                case 1:  
                     c3=c1+c2;  
                     cout<<"Addition: ";  
                     cout<<c3;  
                break;  
                case 2:  
                     c3=c1-c2;  
                     cout<<"Subtraction: ";  
                     cout<<c3;  
                break;  
                case 3:  
                     c3=c1*c2;  
                     cout<<"Multiplication: ";  
                     cout<<c3;  
                break;  
                case 4:  
                     c3=c1/c2;  
                     cout<<"Division: ";  
                     cout<<c3;  
                break;  
                default:  
                     cout<<"Invalid choice\n";  
           }  
      }while(ch!=0);  
      return 0;  
 }  

Comments

Popular posts from this blog

Circle Triangle Pattern

  Group A   Practical 3 a   Problem Statement :   a) Write C++ program to draw the following pattern. Use DDA line and Bresenham‘s circle drawing algorithm. Apply the concept of encapsulation. Check Out Code Here  ðŸ‘‡ Output :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

DSL A2

  Write a Python program to store marks scored in subject “Fundamental of Data Structure” by N students in the class. Write functions to compute following:  a) The average score of class  b) Highest score and lowest score of class  c) Count of students who were absent for the test  d) Display mark with highest frequency The Code for above problem is as follows : """ @author: SPPU SE GURU """ total=int(input ("Enter total no. of students in your class ")) pre=int(input("No. of students appeared for FDS exam : ")) U=[] for i in range (total): i=i+1 U.append(i) R=[] for i in range(pre): roll=int(input("Enter Roll no. of students present for test :- ")) R.append(roll) M=[] for i in range(pre): print("Enter Roll no. ",R[i],end=" ") marks=int(input("Marks:- ")) M.append(marks) print("********** Solutions Are as fo...

DSL E29

 Data Structure Lab : Practical 29 : Problem Statement:  Queues are frequently used in computer programming, and a typical example is the creation of a job queue by an operating system. If the operating system does not use priorities, then the jobs are processed in the order they enter the system. Write C++ program for simulating job queue. Write functions to add job and delete job from queue Check Out Code Here  ðŸ‘‡ // Author : SPPU CSE GURU #include<iostream> using namespace std; class Queue{ private: int front,rear,max; public: int Q[10]; Queue() { front=0; rear=-1; max=10; } void EnQueue(); void DeQueue(); void Display(); }; void Queue::EnQueue() { int data; cout<<"Enter Job no. to Add "<<endl; cin>>data; if(rear...