ZADATAK: Napisati kod koji će računati dužinu hipotenuze (c) trougla na osnovu Pitagorine teoreme. Obratiti pažnju da unos korisnika za ostale dvije stranice (a i b) mora biti isključivo broj i veći od 0. U suprotnom ispisati grešku i vrtiti petlju sve dok unosi za stranice a i b ne budu zadovoljeni.
RJEŠENJE:
PRIMJER:
Unos dužine stranice a:
Unos dužine stranice b:
Rezultat:
KOD:
https://paste.ofcode.org/VaadND5s8WUxvtLcUjwGrd
<script> function pTeorema (a=2, b=2) { var a, b, c; a = prompt("Unesite dužinu stranice a:"); b = prompt("Unesite dužinu stranice b:"); while (a < 1 || b < 1 || isNaN(a) || isNaN(b)) { alert("Obje stranice moraju biti broj i veće od 0!"); a = prompt("Unesite dužinu stranice a:"); b = prompt("Unesite dužinu stranice b:"); } c = Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2)).toFixed(2); return c; } document.write("Dužina hipotenuze je: " + pTeorema()); </script>
0 comments:
Post a Comment
Note: only a member of this blog may post a comment.