Programming Arithmetic Operators, computer science homework help
Write a program that asks the user to input two real numbers,n1andn2. Compute the sumn1+ n2, the differencen1-n2. the productn1n2, and the quotientn1/n2(assumen2 0), and output the results. Your program output should be formatted as follows:Enter a real number n1:64.67Enter a real number n2:-14.264.67 + -14.2 = 50.4764.67 - -14.2 = 78.8764.67 * -14.2 = -918.31464.67 / -14.2 = -4.55423Press any key to continue