Question:

How do you program the following in C++ ?

by  |  earlier

0 LIKES UnLike

Input two integer numbers and then use FOUR FUNCTIONS that will perform the following:

-Add the two numbers

-Subtract the two numbers

-Calculate the product of the two numbers, and calculate the quotient modulus in one function using pass by reference.

Convert the first number entered from Farenheit to Celcius and the second number from Celcius to Farenheit using functions. Use the following formulas to perform the conversion:

Celcius = (100/180) * (Farenheit-32)

Farenheit = (Celcius * (180/100)) +32

Also thank the user and pause the screen so the user will have ample time to see the output on the screen.

 Tags:

   Report

2 ANSWERS


  1. Well I could tell you how, but if someone is asking you to do this, they must have been teaching you how for a time. Making functions isn't the first thing you learn.  To ask to write this program tells me you are in school.  Did you want to be in CS?  If so, then do some of it, show me your part and problems you have and I will be glad to help you along the way.

    I won't be there for the job interview, you really have to learn to logically think this through.


  2. First, open and read the book you were supposed to read. Then, do the assigned problems. Finally, write the program.

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions