Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>
- Funzioni
- </title>
- </head>
- <body>
- <script>
- function minimo(a, b) {
- document.write("Minimo: ");
- if (a > b) document.write(b, "<br>"); else document.write(a, "<br>");
- }
- function massimo(a, b) {
- document.write("Massimo: ");
- if (a > b) {
- document.write(a, "<br>");
- }
- else {
- document.write(b, "<br>");
- }
- }
- massimo(10, 5);
- minimo(10, 5);
- function min(a, b) { return a > b ? b : a; }
- function max(a, b) { return a > b ? a : b; }
- function dammi_massimo(a, b) {
- var max = a; if (a < b) max = b;
- return max; // rende disponibile il valore per un uso esterno!
- }
- var x = 50; var y = 20; var z = 30;
- var max_xy = dammi_massimo(x, y);
- var max_xyz = dammi_massimo(max_xy, z);
- document.write("Il massimo tra ", x, ",", y, ",", z, " è: ", max_xyz, "<br>");
- function massimo_comune_divisore(n, d) {
- if (d == 0) return n;
- var risultato = massimo_comune_divisore(d, n % d);
- return risultato;
- }
- var numeratore = 123;
- var denominatore = 60;
- var mcd = massimo_comune_divisore(numeratore, denominatore);
- document.write("Frazione: ", numeratore / mcd, "/", denominatore / mcd, "<br>");
- var f1_n = 243;
- var f1_d = 534;
- mcd = massimo_comune_divisore(f1_n, f1_d);
- document.write("Frazione: ", f1_n / mcd, "/", f1_d / mcd, "<br>");
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement