Dz4js.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script>
  11. // html tree
  12. let body = {
  13. tagName: 'body',
  14. subTags: [
  15. {
  16. tagName: 'div',
  17. subTags: [
  18. {
  19. tagName: 'span',
  20. text: "Enter a data please:",
  21. },
  22. {
  23. tagName: "br"
  24. },
  25. {
  26. tagName: 'input',
  27. attrs: {
  28. type: 'text',
  29. id: 'name',
  30. }
  31. },
  32. {
  33. tagName: 'input',
  34. attrs: {
  35. type: 'text',
  36. id: 'surname',
  37. },
  38. },
  39. ]
  40. },
  41. {
  42. tagName: 'div',
  43. subTags: [
  44. {
  45. tagName: 'button',
  46. text: "OK",
  47. attrs: {
  48. id: 'ok',
  49. },
  50. },
  51. {
  52. tagName: 'button',
  53. text: "Cancel",
  54. attrs: {
  55. id: 'cancel',
  56. },
  57. }
  58. ]
  59. }
  60. ]
  61. }
  62. console.log(body.subTags[1].subTags[1].text);
  63. console.log(body.subTags[0].subTags[3].attrs.id);
  64. // declarative fields
  65. let notebook = {
  66. brand: prompt("Введите брэнд ноутбука"),
  67. type: prompt("Введите тип ноутбука"),
  68. model: prompt("Введите модель ноутбука"),
  69. ram: +prompt("Введите оперативную память ноутбука"),
  70. size: prompt("Размер дисплея"),
  71. weight: +prompt("Введите вес"),
  72. resolution: {
  73. width: +prompt("Введите высоту"),
  74. height: +prompt("Введите ширину"),
  75. },
  76. };
  77. let phone = {
  78. brand: prompt("Введите брэнд телефона"),
  79. model: prompt("Введите модель телефона"),
  80. ram: +prompt("Введите оперативную память ноутбука"),
  81. color: prompt("Введите цвет телефона"),
  82. };
  83. let person = {
  84. name: prompt("Введите ваше имя"),
  85. surname: prompt("Введите вашу фамилию"),
  86. married: confirm("Вы женаты?")
  87. };
  88. // object links
  89. // (доделать)
  90. let person = {
  91. name: prompt("Введите ваше имя"),
  92. surname: prompt("Введите вашу фамилию"),
  93. married: confirm("Вы женаты?"),
  94. laptop: {
  95. brand: prompt("Введите брэнд ноутбука"),
  96. model: prompt("Введите модель ноутбука"),
  97. color: prompt("Введите цвет ноутбука"),
  98. owner: {
  99. name: prompt("Введите ваше имя"),
  100. surname: prompt("Введите вашу фамилию"),
  101. }
  102. },
  103. smartphone: {
  104. brand: prompt("Введите брэнд телефона"),
  105. model: prompt("Введите модель телефона"),
  106. color: prompt("Введите цвет телефона"),
  107. owner: {
  108. name: prompt("Введите ваше имя"),
  109. surname: prompt("Введите вашу фамилию"),
  110. }
  111. },
  112. };
  113. //imperative array fill 3
  114. let arr = []
  115. arr[0] = prompt("Введите что нибудь");
  116. arr[1] = prompt("И еще что нибудь");
  117. arr[2] = prompt("Это в последний раз");
  118. //while confirm
  119. let rar = confirm("Хотите прервать цыкл?")
  120. while (!rar) {
  121. rar = confirm("Хотите прервать цыкл?")
  122. }
  123. // array fill
  124. let arr = [];
  125. let arr3 = []
  126. while (arr) {
  127. arr3.push(arr = prompt())
  128. if (arr === null) {
  129. break;
  130. }
  131. }
  132. // array fill nopush
  133. let arr2 = []
  134. for (let i = 0; i != null; i++) {
  135. arr2[i] = prompt("Какое живтное вам нравится?");
  136. if (arr2[i] === null)
  137. break;
  138. }
  139. // infinite probability
  140. let number = 0;
  141. while (true) {
  142. let randomNumber = Math.random();
  143. number++;
  144. if (randomNumber > 0.9) {
  145. alert("число:" + randomNumber);
  146. alert("итераций:" + number)
  147. break;
  148. }
  149. }
  150. // empty loop
  151. do {
  152. } while (prompt() == null)
  153. // progression sum
  154. let a = 0
  155. for(let b = 1; b < 20; b = b +3){
  156. console.log(b)
  157. a = a +i;
  158. }
  159. console.log("Сумма арифметической прогрессии " + a)
  160. // chess one line
  161. let str = ""
  162. for (let a = 0; a < 11; a++) {
  163. if (a % 2 === 0) {
  164. str = str + " "
  165. }
  166. else if (a % 2 === 1) {
  167. str = str + "#";
  168. }
  169. }
  170. // numbers
  171. let str = "";
  172. for (let j = 0; j < 10; j++) {
  173. for (let a = 0; a < 10; a++) {
  174. str = str + a;
  175. if (a == 9) {
  176. str = str + "\n"
  177. }
  178. }
  179. if (j == 9) {
  180. console.log(str)
  181. break;
  182. }
  183. }
  184. //chess
  185. let str = ""
  186. for (let b = 0; b < 10; b++) {
  187. for (let a = 0; a < 13; a++) {
  188. if (a == 12) {
  189. str = str + "\n"
  190. }
  191. else if (a % 2 === 0) {
  192. str = str + "."
  193. }
  194. else if (a % 2 === 1) {
  195. str = str + "#";
  196. }
  197. }
  198. for (let a = 0; a < 13; a++) {
  199. if (a == 12) {
  200. str = str + "\n"
  201. }
  202. else if (a % 2 === 0) {
  203. str = str + "#"
  204. }
  205. else if (a % 2 === 1) {
  206. str = str + ".";
  207. }
  208. }
  209. if (b == 4) {
  210. console.log(str)
  211. break;
  212. }
  213. }
  214. //cubes
  215. for (let cubesIndex = []; ; ) {
  216. let indexToPower = cubesIndex.length;
  217. let exponentiation = indexToPower ** 3;
  218. cubesIndex.push(exponentiation);
  219. if (cubesIndex.length == 10) {
  220. console.log(cubesIndex);
  221. break;
  222. }
  223. }
  224. //multiply table
  225. let arr = Array(10);
  226. for (let i = 1; i < 10; i++) {
  227. arr[i] = [...Array(10)].map((_, j) => i * j);
  228. }
  229. console.log(arr[5][5])
  230. // matrix to html table
  231. // Задание на синий пояс: Треугольник
  232. let str = ""
  233. for (let b = 0; b < 1; b++) {
  234. for (let a = 0; a < 12; a++) {
  235. if (a == 11) {
  236. str = str + "\n"
  237. }
  238. else if (a === 5) {
  239. str = str + "#"
  240. }
  241. else {
  242. str = str + ".";
  243. }
  244. }
  245. for (let a = 0; a < 12; a++) {
  246. if (a == 11) {
  247. str = str + "\n"
  248. }
  249. else if ((a === 4) || (a === 5) || (a === 6)) {
  250. str = str + "#"
  251. }
  252. else {
  253. str = str + ".";
  254. }
  255. }
  256. for (let a = 0; a < 12; a++) {
  257. if (a == 11) {
  258. str = str + "\n"
  259. } else if ((a === 3) || (a === 4) || (a === 5) || (a === 6) || (a === 7)) {
  260. str = str + "#"
  261. }
  262. else {
  263. str = str + ".";
  264. }
  265. }
  266. for (let a = 0; a < 12; a++) {
  267. if (a == 11) {
  268. str = str + "\n"
  269. }
  270. else if ((a === 0) || (a === 1) || (a === 9) || (a === 10)) {
  271. str = str + "."
  272. }
  273. else {
  274. str = str + "#";
  275. }
  276. }
  277. for (let a = 0; a < 12; a++) {
  278. if (a == 11) {
  279. str = str + "\n"
  280. }
  281. else if ((a === 0) || (a === 10)) {
  282. str = str + "."
  283. }
  284. else {
  285. str = str + "#";
  286. }
  287. }
  288. for (let a = 0; a < 12; a++) {
  289. if (a == 11) {
  290. str = str + "\n"
  291. } else {
  292. str = str + "#";
  293. }
  294. }
  295. if (b == 0) {
  296. console.log(str)
  297. break;
  298. }
  299. }
  300. </script>
  301. </body>
  302. </html>