https://github.com/bastidanicolas/temp-unit-converter
Springboot api to convert Celsius to Fahrenheit and vice-versa
https://github.com/bastidanicolas/temp-unit-converter
Last synced: 6 months ago
JSON representation
Springboot api to convert Celsius to Fahrenheit and vice-versa
- Host: GitHub
- URL: https://github.com/bastidanicolas/temp-unit-converter
- Owner: BastidaNicolas
- Created: 2022-10-01T14:52:14.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-04T17:08:17.000Z (about 3 years ago)
- Last Synced: 2024-10-12T13:12:02.115Z (12 months ago)
- Language: Java
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# temp-unit-converter
Springboot api to convert Celsius to Fahrenheit and vice-versa# Task
### API Conversor de temperatura
Un ciudadano estadounidense está estudiando español. Leyendo varias lecciones sobre la cultura de América Latina descubrió que las temperaturas no se manejan con grados Fahrenheit como en Estados Unidos, sino que en grados Celsius y le gustaría tener una aplicación que sea capaz de, a partir de enviar una temperatura en grados en Fahrenheit obtener como respuesta su conversión a Celsius.
Desarrollar una API con Spring Boot que permita esto. Tener en cuenta los siguientes casos de prueba para testear el correcto funcionamiento de la API:
- 50º F = 10º C
- 104º F = 40º C
- 86º F = 30º C### Calls
#### Turn F to C
/convert/returnCel (add param float "temp")
#### Turn C to F
/convert/returnFer (add param float "temp")
# Status
:heavy_check_mark: Completed