Updating homework

This commit is contained in:
raul 2024-01-18 09:43:05 +00:00
parent 3a46c8beef
commit 23adce80cf
6 changed files with 67 additions and 62 deletions

62
1.go
View File

@ -1,62 +0,0 @@
// Plataforma de televisión cobra una cuota plana de 15€ al mes (incluye series y peliculas, 4 partidos de futbol, 4 participaciones en apuestas deportivas), cuando el consumo mensual exceden esas condiciones, se cobran 6€ por cada partido y 5€ por cada apuesta, la factura mensual será coste fijo + coste partido + coste apuestas
package main
import (
"fmt"
"math"
)
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
const partidoExtra float64 = 6.0
const apuestaExtra float64 = 5.0
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)
fmt.Printf("Cuantas apuestas has hecho?\nNúmero: ")
fmt.Scanln(&numeroApuestas)
var impuestoPartidos float64
var impuestoApuestas float64
if numeroPartidos > 4 {
impuestoPartidos = (float64(numeroPartidos - 4)) * partidoExtra
} else {
impuestoPartidos = 0.0
}
if numeroApuestas > 4 {
impuestoApuestas = (float64(numeroApuestas - 4)) * apuestaExtra
} else {
impuestoApuestas = 0.0
}
var precioFinal float64 = costeFijo + impuestoPartidos + impuestoApuestas
var precioFinalMasIVA float64 = roundFloat(precioFinal*IVA, 2)
fmt.Printf("\nLa factura del mes costará %v€!\n", precioFinal)
fmt.Printf("La factura del mes incluyendo IVA costará %v€!\n", precioFinalMasIVA)
}

20
8.html Normal file
View File

@ -0,0 +1,20 @@
<html>
<head>
<meta name="" charset="UTF-8" content="">
</head>
<body>
<script src="./8.js"></script>
<h1>Tabla de multiplicar</h1>
<form>
<!-- <select id="opciones"> -->
<!-- <option value="HOR">Horizontal</option> -->
<!-- <option value="VER">Vertical</option> -->
<!-- </select> -->
<!-- <input type="text" id="numeroDeImagenes" name="" value=""> -->
<input type="submit" name="" onclick="main()" value="Mostrar">
</form>
</body>
</html>

9
8.js Normal file
View File

@ -0,0 +1,9 @@
function multiplicar() {
}
function main() {
for (let i; i < 11; i++) {
document.writeln(`a<br>`);
}
}

20
9.html Normal file
View File

@ -0,0 +1,20 @@
<html>
<head>
<meta name="" charset="UTF-8" content="">
</head>
<body>
<script src="./9.js"></script>
<h1>Tabla de multiplicar</h1>
<form>
<!-- <select id="opciones"> -->
<!-- <option value="HOR">Horizontal</option> -->
<!-- <option value="VER">Vertical</option> -->
<!-- </select> -->
<!-- <input type="text" id="numeroDeImagenes" name="" value=""> -->
<input type="submit" name="" onclick="main()" value="Mostrar">
</form>
</body>
</html>

18
9.js Normal file
View File

@ -0,0 +1,18 @@
function multiplicador(multipl) {
for (let i = 1; i < 11; i++) {
document.writeln(`${multipl} * ${i} = ${i * multipl}<br>`)
}
// Adding horizontal line for visual clarity
document.writeln(`<hr>`)
}
function main() {
// Declaring multi to hold the second number
var multi = 1;
// For loop that and for every time the multiplier function ends, run multi++ to sum
for (let a = 1; a < 11; a++) {
multiplicador(multi)
multi++
}
}

BIN
google.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB