I have never worked with C++ before. I someone could help out with this I would greatly appreciate it.
CSE 232 Fall 2017 Programming Project #1 Assignment Overview This project focuses on some mathematical manipulation. It is worth 5 points (0.5% of your overall grade). It is due Monday, Sept 11h before midnight The Problem You should all have learned something about complex numbers in your travels. A complex number actually consists of two parts: a real part and an imaginary part. The imaginary part is multiplied by the special value i, the V-1. A complex number is usually written in the form 1 2i a sum with the real part first, the imaginary part second followed by i We are just going to do some basic math. You will read in two complex numbers and provide the sum, difference, product and quotient of those two values Some Background You forgot about complex numbers, didn’t you. Well, Wikipedia is here to help. There’s far more information here than you need, but the two most important sections are https://en.wikipedia.org/wiki/Complex number#Addition and subtraction and https://en.wikipedia.org/wiki/Complex number#Multiplication and division. You can get the formulas from there Program Specifications Your program will do the following 1. Take as input four floating point values (in this order, as indicated) a. a real value and an imaginary value for the first complex number b. a real value and an imaginary value for the second complex number 2. Print the following four results: the sum, the difference, the product and the quotient of the 2 complex numbers. You will use exactly the following format: a. Each result on a single line (thus 4 lines printed) b. The precision is to two decimal point of accuracy (see note 1c below) c. output looks like the following exactly: 1 + 2i that is, a float, a space, a plus sign, a space, a float followed directly by the letteri Deliverables proj01/proj01.cpp. The name of the directory is proj01, the name file you turn in should be exactly proj01.cpp. It will be checked upon handing it in to Mimir for the first test case. Just like the lab, you must click on “Project 01 – complex number manipulation”, the parent of the directory proj01, to submit the file