From 3a46c8beefe79b428fadba6242def86689d19bb9 Mon Sep 17 00:00:00 2001 From: raul Date: Mon, 15 Jan 2024 13:25:25 +0100 Subject: [PATCH] Updating homework --- 1.go | 2 +- 7.html | 20 ++++++++++++++++++++ 7.js | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 7.html create mode 100644 7.js diff --git a/1.go b/1.go index 35aa00d..f8fa9cf 100644 --- a/1.go +++ b/1.go @@ -8,7 +8,7 @@ import ( ) func roundFloat(numero float64, precision uint) float64 { - radio := math.Pow(10, float64(precision)) + var radio = math.Pow(10, float64(precision)) var resultado = math.Round(numero*radio) / radio return resultado } diff --git a/7.html b/7.html new file mode 100644 index 0000000..9e18ac0 --- /dev/null +++ b/7.html @@ -0,0 +1,20 @@ + + + + + + + + +

Galería

+
+ + + +
+ + + diff --git a/7.js b/7.js new file mode 100644 index 0000000..b49b9ce --- /dev/null +++ b/7.js @@ -0,0 +1,32 @@ +function galeriaHOR() { + // var num = document.getElementById('numeroDeImagenes').value; + // document.writeln(``); + //for (let i = 0; i < num; i++) { + //document.write(``) + //} + //document.writeln(`
`); + + // Sacar el select y subsecuentemente el valor de este + var opcion = document.getElementById('opciones'); + var valor = opcion.value; + + // Sacar el número seleccionado por el usuario + var num = document.getElementById('numeroDeImagenes').value; + + if (valor.toString() == "HOR") { + //var num = document.getElementById('numeroDeImagenes').value; + document.writeln(``); + for (let i = 0; i < num; i++) { + document.write(``); + } + document.writeln(`
`); + } + + else { + document.writeln(``); + for (let i = 0; i < num; i++) { + document.write(``); + } + document.writeln(`
`); + } +}