// ЗАДАНИЕ 2 - a // function a(hello){ // alert(hello); // } // a("Привет!"); // ЗАДАНИЕ 3 - cube // function cube(){ // alert(prompt('Введите число, которую хотите возвести в куб') ** 3); // } // cube(); // ЗАДАНИЕ 4 - avg2 // function avg2(a, b){ // alert((a + b) / 2); // } // avg2(1, 2); // avg2(10, 5); // ЗАДАНИЕ 5 - sum3 // function sum3(a, b, c=0){ // alert(a + b + c); // } // sum3(1, 2, 3); // sum3(5, 10, 100500); // sum3(5, 10); // ЗАДАНИЕ 6 - intRandom // function intRandom(a, b=0){ // alert(Math.floor(Math.random() * (b - a)) + a); // } // intRandom(2, 15); // intRandom(-1, -1); // intRandom(0, 1); // intRandom(10); // ЗАДАНИЕ 7 - greetAll // function greetAll(name1, name2, name3){ // alert('Hello' + ' ' + name1 + ' ' + name2 + ' ' + name3); // } // greetAll("Superman"); // greetAll("Superman", "SpiderMan"); // greetAll("Superman", "SpiderMan", "Captain Obvious"); // ЗАДАНИЕ 8 - sum // function sum(a, b=0, c=0, d=0){ // alert(a + b + c + d); // } // sum(1); // sum(2); // sum(10, 20, 40, 100); // ЗАДАНИЕ 8 - Union // function a(hello){ // switch (a){ // case a: alert(hello); // } // } // a("Привет!"); // function cube(){ // switch(cube){ // case cube: alert(prompt('Введите число, которую хотите возвести в куб') ** 3); // } // } // cube(); // function avg2(a, b){ // switch(avg2){ // case avg2: alert((a + b) / 2); // } // } // avg2(1, 2); // avg2(10, 5); // function sum3(a, b, c=0){ // switch (sum3){ // case sum3: alert(a + b + c); // } // } // sum3(1, 2, 3); // sum3(5, 10, 100500); // sum3(5, 10); // function intRandom(a, b=0){ // switch (intRandom){ // case intRandom: alert(Math.floor(Math.random() * (b - a)) + a); // } // } // intRandom(2, 15); // intRandom(-1, -1); // intRandom(0, 1); // intRandom(10); // function greetAll(name1, name2, name3){ // switch (greetAll){ // case greetAll: alert('Hello' + ' ' + name1 + ' ' + name2 + ' ' + name3); // } // } // greetAll("Superman"); // greetAll("Superman", "SpiderMan"); // greetAll("Superman", "SpiderMan", "Captain Obvious"); // function sum(a, b=0, c=0, d=0){ // switch (sum){ // case sum: alert(a + b + c + d); // } // } // sum(1); // sum(2); // sum(10, 20, 40, 100);