Giuve me some c++ code for here

jm06

Honorable
Jan 21, 2013
1
0
10,510
Prob 1:

Accept dollar value and print the equivalent peso value. The program will convert dollar to peso having an exchange rate of 1 to 43.35

Prob.2
Create a program that will accept
a temperature in Fahrenheit and print its equivalent temperature in Celsius. The formula for converting Fahrenheit to Celsius is C=5/9(F-32); where C is the temperature in Celsius and F is the temperature in Fahrenheit.


Prob.3
Accept integer values for the length of the adjacent and opposite sides of a right triangle and compute and print the value of the hypotenuse. The formula for computing the hypotenuse is C2=a2+b2.