123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- {
- while (!confirm('Жми отмену!')) {
- alert('Опа, нежданчик! Тут магия зазеркалья')
- }
- }
- {
- const arr = []
- let item
- while (item !== null) {
- item = prompt('введи что-то для добавления в массив')
- if (item !== null) { arr.push(item) }
- else break
- }
- console.log(arr)
- }
- {
- const arr = []
- let item, i = 0
- while (item !== null) {
- item = prompt('введи что-то для добавления в массив')
- if (item !== null) { arr[i] = item }
- else break;
- i++
- }
- console.log(arr)
- }
- {
- let num = 0, i = 0
- while (num <= 0.9) {
- num = Math.random()
- console.log(`${i + 1}:`, num)
- if (num > 0.9) {
- break
- }
- i++
- }
- alert(`Всего было ${i + 1} итераций цикла`)
- }
- {
- while (prompt('Жми') === null) { }
- }
- {
- const arr = []
- const length = +prompt('Введите количество членов арифметической прогрессии')
- for (let i = 0; i < length; i++) {
- arr.push(1 + i * 3)
- }
- console.log(arr.reduce((a, b) => a + b))
- }
- {
- const length = +prompt('Введите длину строки')
- let str = ''
- for (i = 0; i < length; i++) {
- str += (i % 2 ? '#' : ' ')
- }
- console.log(str)
- }
- {
- let str = ''
- for (let i = 0; i < 10; i++) {
- for (let j = 0; j < 10; j++) {
- str += j;
- }
- str += '\n'
- }
- console.log(str);
- }
- {
- [row, column] = ['Введите количество строк в таблице', 'Введите количество столбцов в таблице'].map(prompt)
- let str = ''
- for (let i = 0; i < +row; i++) {
- for (let j = 0; j < +column; j++) {
- i % 2 ? str += (j % 2 ? '.' : '#') : str += (j % 2 ? '#' : '.')
- }
- str += '\n'
- }
- console.log(str)
- }
- {
- const arr = []
- const length = +prompt('Введите длинну массива')
- for (let i = 0; i < length; i++) {
- arr.push(i ** 3)
- }
- console.log(arr)
- }
- {
- const length = +prompt('Введите размер стороны таблицы Пифагора')
- let arr = []
- for (let i = 0; i < length; i++) {
- arr[i] = []
- for (let j = 0; j < length; j++) {
- arr[i].push(i * j)
- }
- arr.push(arr[i])
- }
- console.log(arr)
- console.log(arr[5][6] == 30)
- console.log(arr[7][2] == 14)
- }
- {
- let readArrayOfObjects = () => {
- const arr = []
- do {
- const obj = {}
- for (let key, value; ; obj[key] = value) {
- key = prompt('Введите ключ для объекта')
- if (key === null) {
- break
- }
- value = prompt('Введите значение ключа объекта')
- if (value === null) {
- break
- }
- }
- arr.push(obj)
- } while (confirm('Продолжаем ввод объектов?'))
- return arr
- }
- readArrayOfObjects()
- }
- {
- const length = prompt('Введите любое нечетное число')
- let str = ''
- for (let i = 0; i < length; i++) {
- for (let j = 0; j < length; j++) {
- if (i < length / 2) {
- !(j < (Math.floor(length / 2) - i) || j > (Math.floor(length / 2) + i)) ? str += '#' : str += '.'
- } else {
- !(j < (i - Math.floor(length / 2)) || j > length - (i - Math.floor(length / 2) + 1)) ? str += '#' : str += '.'
- }
- }
- str += '\n'
- }
- console.log(str)
- }
- {
- const length = +prompt('Введите размер стороны таблицы Пифагора')
-
- const div = document.createElement('div')
- document.body.append(div)
-
- const multiplyTable = document.createElement('table')
- div.append(multiplyTable)
-
- for (let i = 1; i < length + 1; i++) {
- const row = document.createElement('tr')
- multiplyTable.append(row)
- for (let j = 1; j < length + 1; j++) {
- const col = document.createElement('td')
- col.style.cssText = `
- border: 1px solid grey;
- min-width: 1.3em;
- text-align: center;
- `
- row.append(col)
- col.innerText = `${i * j}`
-
- col.addEventListener('mouseover', () => multiplyTable.rows[i - 1].style.backgroundColor = '#00FFFF')
- col.addEventListener('mouseout', () => multiplyTable.rows[i - 1].style.backgroundColor = 'transparent')
-
- col.addEventListener('mouseover', () => {
- for (let k = 1; k < length + 1; k++) {
- multiplyTable.rows[k - 1].cells[j - 1].style.backgroundColor = "#00FFFF"
-
- }
- })
- col.addEventListener('mouseout', () => {
- for (let k = 1; k < length + 1; k++) {
- multiplyTable.rows[k - 1].cells[j - 1].style.backgroundColor = "transparent"
- }
- })
-
- col.onmouseover = () => col.style.backgroundColor = '#FFFF00'
- col.addEventListener('mouseout', () => col.style.backgroundColor = 'transparent')
- }
- }
- }
|