Problem: Write a program that converts degrees from Celsius to Fahrenheit, using the formula:DegreesF = ( DegreesC * 9/5) + 32 Prompt the user to enter a temperature in degrees Celsius as a whole number without a fractional part. Then, havethe program display the equivalent Fahrenheit temperature, including the fractional part to at least TWO decimalplaces. A possible dialog with the user might be:Enter a temperature in degrees Celsius: 20 Problem: Write a program that determines the change to be dispensed from a vending machine. An item in themachine can cost between 25 cents and a dollar, in 5-cent increments ( 25, 30, 35, . . . . , 90, 95, 100 ), and themachine accepts only a single dollarEnter price of the item ( from 25 cents to a dollar, in 5-centincrements ): 45You bought an item for 45 cents and gave me a dollar, so your change is:2 quarters,0 dimes,1 nickel.
Problem: Write a
DegreesF = ( DegreesC * 9/5) + 32
Prompt the user to enter a temperature in degrees Celsius as a whole number without a fractional part. Then, have
the program display the equivalent Fahrenheit temperature, including the fractional part to at least TWO decimal
places. A possible dialog with the user might be:
Enter a temperature in degrees Celsius: 20
Problem: Write a program that determines the change to be dispensed from a vending machine. An item in the
machine can cost between 25 cents and a dollar, in 5-cent increments ( 25, 30, 35, . . . . , 90, 95, 100 ), and the
machine accepts only a single dollar
Enter price of the item ( from 25 cents to a dollar, in 5-cent
increments ): 45
You bought an item for 45 cents and gave me a dollar, so your change is:
2 quarters,
0 dimes,
1 nickel.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images