Question: Write a program to display a Celcius to Fahrenheit conversion table for every temperature divisible by 5 within the range read in input. Per example,

Write a program to display a Celcius to Fahrenheit conversion table for every temperature divisible by 5 within the range read in input. Per example, if the range required is [23:35), the temperatures printed will be 25, 30 and 35. Note: degree F (9/5) degree C+32 Hint: use the operator modulo % which return the remainder of a division to determine if the current temperature is divisible by 5. For example: Output deg CIdeg F Input start-43 end-5145 1 113.00 122.00 50 Answer 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
