<html>
<head>
<script>
a=window.prompt("Inserisci numero o STOP per uscire");
max=parseInt(a);
min=parseInt(a);
v=0;
while(v!="STOP"){
v=window.prompt("Inserisci un numero");
c=parseInt(v);
if(max<c){
max=c;
}
if(c<min){
min=c;
}
}
document.writeln("Il massimo è "+max+"<br>");
document.writeln("Il minimo è "+min);
</script>
</head>
<body></body>
</html>