Temperature Conversion
Temperature conversion problems improve formula implementation and numeric precision handling.
Core Formulas
- Celsius to Fahrenheit:
F = (C * 9/5) + 32 - Fahrenheit to Celsius:
C = (F - 32) * 5/9
Topics
Practice Suggestions
- Test with 0, 100, and negative temperatures.
- Round to 2 decimal places and compare outputs.
- Build menu-driven conversion program.