vault backup: 2025-11-05 11:48:08
This commit is contained in:
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user