Question: C++ language 1. Ask the user for 3 numbers and then use them to compute 2 separate but similar-looking equations. Here are the 2 equations
C++ language
1. Ask the user for 3 numbers and then use them to compute 2 separate but similar-looking equations. Here are the 2 equations you will compute: a + 1 * b + 2 - c (a + 1) * (b + 2) - c
2. Ask the user for a temperature in Celsius, and then convert it to Fahrenheit. Ask the user for a temperature in Fahrenheit, and then convert it to Celsius. Use variables of type double. Here are the 2 equations youll need: C = (F 32.0) * (5.0 / 9.0) F = (C * 9.0) / 5.0 + 32.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
