https://github.com/raykavin/conversor-temperatura-dio-go
https://github.com/raykavin/conversor-temperatura-dio-go
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/raykavin/conversor-temperatura-dio-go
- Owner: raykavin
- Created: 2026-05-26T14:53:24.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-26T14:57:33.000Z (2 months ago)
- Last Synced: 2026-05-26T16:36:44.931Z (2 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Conversor de Temperatura Kelvin → Celsius
Este projeto é um desafio em Go proposto pela formação **Go Developer** da :contentReference[oaicite:0]{index=0}.
## Objetivo
Converter o ponto de ebulição da água de Kelvin para graus Celsius utilizando a fórmula:
:contentReference[oaicite:1]{index=1}
## Estrutura do projeto
```text
conversor-temperatura/
├── go.mod
├── main.go
└── README.md
```
## Executando o projeto
```bash
go run .
```
## Saída esperada
```text
Temperatura em Kelvin: 373.00 K
Temperatura em Celsius: 100.00 °C
```