<html>
<head>
<title>Programa 1</title>
<script language="javascript">
var contador=0;
var a=0;
var d=0;
function calcular(){
var e=parseInt(document.getElementById("txte").value);
var n1=parseInt(document.getElementById("txtn1").value);
var n2=parseInt(document.getElementById("txtn2").value);
var n3=parseInt(document.getElementById("txtn3").value);
var n4=parseInt(document.getElementById("txtn4").value);
var i=0;
var promedio=(n1*0.2+n2*0.2+n3*0.3+n4*0.3);
alert("promedio="+promedio);
contador=contador+promedio;
if (promedio>=3)
{
alert("Aprobo");
a=a+1;
}
else
{
alert("Desaprobo");
d=d+1;
}
alert("Promedio del curso="+contador/e);
alert("Cantidad de Estudiantes Aprovados="+a);
alert("Cantidad de Estudiantes Desaprovados="+d);
alert("Notas de nuevo estudiante");
}
</script>
</head>
<body bgcolor="red">
<form>
<text><center>ESTUDIANTEs USCO</text><BR><BR>
<e>Numero de Estudiantes:<input type="text"id="txte"> <BR>
<n1>Nota 1:<input type="text"id="txtn1"> <BR>
<n2>Nota 2:<input type="text"id="txtn2"> <BR>
<n3>Nota 3:<input type="text"id="txtn3"> <BR>
<n4>Nota 4:<input type="text"id="txtn4"><BR><BR>
<promedio><input type="button"value="Promedio de notas"onClick="calcular()">
</form>
</body>
</html>