123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- // ЗАДАНИЕ 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);
|