Entradas

Mostrando las entradas de junio, 2024

CALCULANDO FUERZA

<! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Calculadora de Fuerza </ title > </ head > < body > < div class = "container" >     < h2 > Calculadora de Fuerza </ h2 >     < label for = "masa" > Masa (kg): </ label >     < input typ0e = "number" id = "masa" min = "0" >     < label for = "aceleracion" > Aceleración (m/s²): </ label >     < input type = "number" id = "aceleracion" min = "0" >     < button onclick = " calcularFuerza ()" > Calcular Fuerza </ button >     < div id = "resultado" class = "message" style = " display: none;" ></ div > </ div > ...

CACULOS DE MRU DATOS QUEMADOS

Imagen
      MRU INTERFAZ GRAFICA. <! DOCTYPE html > < html lang = "es" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > clase de java script </ title > </ head > < body >     < input type = "text" id = "distancia" placeholder = "ingrese distancia en metros" > < br > < input type = "text" id = "tiempo" placeholder = "ingrese tiempo en segundos" > < input type = "button" value = "calcular velocidad" onclick = " calcularvelocidad ()" >     < script > function calcularvelocidad ()     {         console . log ( "funcion calculo velocidad" );         var distancia = document . getElementById ( "distancia" ). value ;         var tiempo = document . getElementBy...