js.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // ЗАДАНИЕ 2 - a
  2. // function a(hello){
  3. // alert(hello);
  4. // }
  5. // a("Привет!");
  6. // ЗАДАНИЕ 3 - cube
  7. // function cube(){
  8. // alert(prompt('Введите число, которую хотите возвести в куб') ** 3);
  9. // }
  10. // cube();
  11. // ЗАДАНИЕ 4 - avg2
  12. // function avg2(a, b){
  13. // alert((a + b) / 2);
  14. // }
  15. // avg2(1, 2);
  16. // avg2(10, 5);
  17. // ЗАДАНИЕ 5 - sum3
  18. // function sum3(a, b, c=0){
  19. // alert(a + b + c);
  20. // }
  21. // sum3(1, 2, 3);
  22. // sum3(5, 10, 100500);
  23. // sum3(5, 10);
  24. // ЗАДАНИЕ 6 - intRandom
  25. // function intRandom(a, b=0){
  26. // alert(Math.floor(Math.random() * (b - a)) + a);
  27. // }
  28. // intRandom(2, 15);
  29. // intRandom(-1, -1);
  30. // intRandom(0, 1);
  31. // intRandom(10);
  32. // ЗАДАНИЕ 7 - greetAll
  33. // function greetAll(name1, name2, name3){
  34. // alert('Hello' + ' ' + name1 + ' ' + name2 + ' ' + name3);
  35. // }
  36. // greetAll("Superman");
  37. // greetAll("Superman", "SpiderMan");
  38. // greetAll("Superman", "SpiderMan", "Captain Obvious");
  39. // ЗАДАНИЕ 8 - sum
  40. // function sum(a, b=0, c=0, d=0){
  41. // alert(a + b + c + d);
  42. // }
  43. // sum(1);
  44. // sum(2);
  45. // sum(10, 20, 40, 100);
  46. // ЗАДАНИЕ 8 - Union
  47. // function a(hello){
  48. // switch (a){
  49. // case a: alert(hello);
  50. // }
  51. // }
  52. // a("Привет!");
  53. // function cube(){
  54. // switch(cube){
  55. // case cube: alert(prompt('Введите число, которую хотите возвести в куб') ** 3);
  56. // }
  57. // }
  58. // cube();
  59. // function avg2(a, b){
  60. // switch(avg2){
  61. // case avg2: alert((a + b) / 2);
  62. // }
  63. // }
  64. // avg2(1, 2);
  65. // avg2(10, 5);
  66. // function sum3(a, b, c=0){
  67. // switch (sum3){
  68. // case sum3: alert(a + b + c);
  69. // }
  70. // }
  71. // sum3(1, 2, 3);
  72. // sum3(5, 10, 100500);
  73. // sum3(5, 10);
  74. // function intRandom(a, b=0){
  75. // switch (intRandom){
  76. // case intRandom: alert(Math.floor(Math.random() * (b - a)) + a);
  77. // }
  78. // }
  79. // intRandom(2, 15);
  80. // intRandom(-1, -1);
  81. // intRandom(0, 1);
  82. // intRandom(10);
  83. // function greetAll(name1, name2, name3){
  84. // switch (greetAll){
  85. // case greetAll: alert('Hello' + ' ' + name1 + ' ' + name2 + ' ' + name3);
  86. // }
  87. // }
  88. // greetAll("Superman");
  89. // greetAll("Superman", "SpiderMan");
  90. // greetAll("Superman", "SpiderMan", "Captain Obvious");
  91. // function sum(a, b=0, c=0, d=0){
  92. // switch (sum){
  93. // case sum: alert(a + b + c + d);
  94. // }
  95. // }
  96. // sum(1);
  97. // sum(2);
  98. // sum(10, 20, 40, 100);