Dz4js.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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 != true) {
  121. rar = confirm("Хотите прервать цыкл?")
  122. if (rar) {
  123. break;
  124. }
  125. }
  126. // array fill
  127. let arr = [];
  128. let arr3 = []
  129. while (arr) {
  130. arr3.push(arr = prompt())
  131. if (arr === null) {
  132. break;
  133. }
  134. }
  135. // array fill nopush
  136. let arr2 = []
  137. for (let i = 0; i != null; i++) {
  138. arr2[i] = prompt("Какое живтное вам нравится?");
  139. if (arr2[i] === null)
  140. break;
  141. }
  142. // infinite probability
  143. let number = 0;
  144. while (true) {
  145. let randomNumber = Math.random();
  146. number++;
  147. if (randomNumber > 0.9) {
  148. alert("число:" + randomNumber);
  149. alert("итераций:" + number)
  150. break;
  151. }
  152. }
  153. // empty loop
  154. do {
  155. } while (prompt() == null)
  156. // progression sum
  157. let a = 0
  158. for(let b = 1; b < 20; b = b +3){
  159. console.log(b)
  160. a = a +i;
  161. }
  162. console.log("Сумма арифметической прогрессии " + a)
  163. // chess one line
  164. let str = ""
  165. for (let a = 0; a < 11; a++) {
  166. if (a % 2 === 0) {
  167. str = str + " "
  168. }
  169. else if (a % 2 === 1) {
  170. str = str + "#";
  171. }
  172. }
  173. // numbers
  174. let str = "";
  175. for (let j = 0; j < 10; j++) {
  176. for (let a = 0; a < 10; a++) {
  177. str = str + a;
  178. if (a == 9) {
  179. str = str + "\n"
  180. }
  181. }
  182. if (j == 9) {
  183. console.log(str)
  184. break;
  185. }
  186. }
  187. //chess
  188. let str = ""
  189. for (let b = 0; b < 10; b++) {
  190. for (let a = 0; a < 13; a++) {
  191. if (a == 12) {
  192. str = str + "\n"
  193. }
  194. else if (a % 2 === 0) {
  195. str = str + "."
  196. }
  197. else if (a % 2 === 1) {
  198. str = str + "#";
  199. }
  200. }
  201. for (let a = 0; a < 13; a++) {
  202. if (a == 12) {
  203. str = str + "\n"
  204. }
  205. else if (a % 2 === 0) {
  206. str = str + "#"
  207. }
  208. else if (a % 2 === 1) {
  209. str = str + ".";
  210. }
  211. }
  212. if (b == 4) {
  213. console.log(str)
  214. break;
  215. }
  216. }
  217. //cubes
  218. for (let cubesIndex = []; ; ) {
  219. let indexToPower = cubesIndex.length;
  220. let exponentiation = indexToPower ** 3;
  221. cubesIndex.push(exponentiation);
  222. if (cubesIndex.length == 10) {
  223. console.log(cubesIndex);
  224. break;
  225. }
  226. }
  227. //multiply table
  228. let arr = Array(10);
  229. for (let i = 1; i < 10; i++) {
  230. arr[i] = [...Array(10)].map((_, j) => i * j);
  231. }
  232. console.log(arr[5][5])
  233. // matrix to html table
  234. // Задание на синий пояс: Треугольник
  235. let str = ""
  236. for (let b = 0; b < 1; b++) {
  237. for (let a = 0; a < 12; a++) {
  238. if (a == 11) {
  239. str = str + "\n"
  240. }
  241. else if (a === 5) {
  242. str = str + "#"
  243. }
  244. else {
  245. str = str + ".";
  246. }
  247. }
  248. for (let a = 0; a < 12; a++) {
  249. if (a == 11) {
  250. str = str + "\n"
  251. }
  252. else if ((a === 4) || (a === 5) || (a === 6)) {
  253. str = str + "#"
  254. }
  255. else {
  256. str = str + ".";
  257. }
  258. }
  259. for (let a = 0; a < 12; a++) {
  260. if (a == 11) {
  261. str = str + "\n"
  262. } else if ((a === 3) || (a === 4) || (a === 5) || (a === 6) || (a === 7)) {
  263. str = str + "#"
  264. }
  265. else {
  266. str = str + ".";
  267. }
  268. }
  269. for (let a = 0; a < 12; a++) {
  270. if (a == 11) {
  271. str = str + "\n"
  272. }
  273. else if ((a === 0) || (a === 1) || (a === 9) || (a === 10)) {
  274. str = str + "."
  275. }
  276. else {
  277. str = str + "#";
  278. }
  279. }
  280. for (let a = 0; a < 12; a++) {
  281. if (a == 11) {
  282. str = str + "\n"
  283. }
  284. else if ((a === 0) || (a === 10)) {
  285. str = str + "."
  286. }
  287. else {
  288. str = str + "#";
  289. }
  290. }
  291. for (let a = 0; a < 12; a++) {
  292. if (a == 11) {
  293. str = str + "\n"
  294. } else {
  295. str = str + "#";
  296. }
  297. }
  298. if (b == 0) {
  299. console.log(str)
  300. break;
  301. }
  302. }
  303. </script>
  304. </body>
  305. </html>