This commit is contained in:
raul 2024-01-29 17:43:28 +01:00
parent ce1106d3b3
commit 24f0adac09
1 changed files with 0 additions and 21 deletions

View File

@ -4,16 +4,8 @@ package main
import (
"fmt"
//"math")
)
// This is dumb
// func roundFloat(numero float64, precision uint) float64 {
// var radio = math.Pow(10, float64(precision))
// var resultado = math.Round(numero*radio) / radio
// return resultado
// }
const IVA float64 = 1.1
const costeFijo float64 = 15.0
@ -25,14 +17,6 @@ var numeroPartidos int32
var numeroApuestas int32
func main() {
// var IVA float64 = 1.21
//
// var costeFijo float64 = 15.0
//
// var partidoExtra float64 = 6.0
//
// var numeroPartidos int32
// var numeroApuestas int32
fmt.Printf("Cuantos partidos has visto?\nNúmero: ")
fmt.Scan(&numeroPartidos)
@ -56,12 +40,7 @@ func main() {
}
var precioFinal float64 = costeFijo + impuestoPartidos + impuestoApuestas
// var precioFinalMasIVA float64 = roundFloat(precioFinal*IVA, 2)
var precioFinalMasIVA float64 = precioFinal * IVA
fmt.Printf("\nLa factura del mes costará %.2f€!\n", precioFinal)
fmt.Printf("La factura del mes incluyendo IVA costará %.2f€!\n", precioFinalMasIVA)
// OH MY LORD, I DON'T NEED A DAMN FUNCTION JUST TO ROUND NUMBERS DOWN, I CAN
// LITERALLY JUST FORMAT TO FLOAT AND WRITE .$num BETWEEN % AND f
// I am the world's biggest dumbass
}