vault backup: 2025-11-05 11:48:08

This commit is contained in:
2025-11-05 11:48:08 -03:00
parent 52aff9621f
commit 685b68110f
2 changed files with 10 additions and 2 deletions
@@ -0,0 +1,7 @@
```python
# Programa para converter Fahrenheit para Celsius
F = float(input("Digite a temperatura em F: "))
CELSIUS = (5*(F-32))/5
print(f"{F}°F = {CELSIUS:.2f}°C") # Exibe em 2 casas decimais
```