Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- // let eta = 0;
- // do {
- // eta = parseInt(prompt("Dimmi quanti anni hai", 18)); // "18"
- // //eta = parseInt(eta); //conversione esplicita
- // if (eta === 18) {alert("numero!");}
- // if (eta<=0)
- // alert("L'eta' deve essere maggiore di zero!");
- // } while (eta<=0);
- // const num1 = parseInt( prompt("Primo numero") );
- // const num2 = parseInt( prompt("Secondo numero") );
- // const pi_greco = parseFloat( prompt("Dimmi il valore di pi greco"));
- // B > AZZZZZZZZ
- // "2" > "19999999"
- //if (num1<num2) { alert("primo maggiore del secondo"); }
- // let valore = -1;
- // do {
- // if (valore!==-1) {
- // //istruzioni
- // }
- // //nuovo calcolo/acquisizione di valore
- // } while (valore!== -1);
- // while (valore!== -1)
- // {
- // //istruzioni
- // //nuovo calcolo/acquisizione di valore
- // }
- //contare quante lettere a contiene una stringa
- const frase = prompt("Inserisci una frase");
- //alert(frase.length);
- //frase = "ciao" frase[0]==="c" frase[1]==="i"
- //frase.length
- //let indice = 0;
- let contatore = 0;
- // while (indice<frase.length)
- // {
- // if (frase[indice]==="a")
- // contatore = contatore + 1; //contatore += 1; contatore++
- // indice++;
- // }
- for (let indice=0; indice<frase.length; indice++ )
- {
- if (frase[indice] === "z") break;
- if (frase[indice]==="a")
- contatore = contatore + 1; //contatore += 1; contatore+
- }
- alert(contatore);
- //calcolare la sommatoria dei primi 100 numeri: 1+2+3+...+100
- let somma=0;
- for (let numero=1; numero<=100; numero++) somma += numero;
- alert(somma);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement