Cleanup
This commit is contained in:
parent
ce1106d3b3
commit
24f0adac09
|
@ -4,16 +4,8 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"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 IVA float64 = 1.1
|
||||||
|
|
||||||
const costeFijo float64 = 15.0
|
const costeFijo float64 = 15.0
|
||||||
|
@ -25,14 +17,6 @@ var numeroPartidos int32
|
||||||
var numeroApuestas int32
|
var numeroApuestas int32
|
||||||
|
|
||||||
func main() {
|
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.Printf("Cuantos partidos has visto?\nNúmero: ")
|
||||||
fmt.Scan(&numeroPartidos)
|
fmt.Scan(&numeroPartidos)
|
||||||
|
@ -56,12 +40,7 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
var precioFinal float64 = costeFijo + impuestoPartidos + impuestoApuestas
|
var precioFinal float64 = costeFijo + impuestoPartidos + impuestoApuestas
|
||||||
// var precioFinalMasIVA float64 = roundFloat(precioFinal*IVA, 2)
|
|
||||||
var precioFinalMasIVA float64 = precioFinal * IVA
|
var precioFinalMasIVA float64 = precioFinal * IVA
|
||||||
fmt.Printf("\nLa factura del mes costará %.2f€!\n", precioFinal)
|
fmt.Printf("\nLa factura del mes costará %.2f€!\n", precioFinal)
|
||||||
fmt.Printf("La factura del mes incluyendo IVA costará %.2f€!\n", precioFinalMasIVA)
|
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
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue