Алгоритмы (Javascript): различия между версиями
Перейти к навигации
Перейти к поиску
Строка 16: | Строка 16: | ||
=== Произведение целых чисел === | === Произведение целых чисел === | ||
<syntaxhighlight lang="javascript" line> | <syntaxhighlight lang="javascript" line> | ||
+ | let count = prompt('Введите число множителей') | ||
+ | let product = 1 | ||
+ | for (let i=0; i < count; i++) { | ||
+ | let x = parseInt(prompt('Введите число ' + (i+1).toString())) | ||
+ | product *= x | ||
+ | } | ||
+ | |||
+ | console.log('product = ' + product) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Версия 09:22, 27 июня 2021
Код программ
Сумма вводимых целых чисел
1 let count = prompt('Введите число слагаемых')
2
3 let sum = 0
4 for (let i=0; i < count; i++) {
5 let x = parseInt(prompt('Введите число ' + (i+1).toString()))
6 sum += x
7 }
8
9 console.log('sum = ' + sum)
Произведение целых чисел
1 let count = prompt('Введите число множителей')
2
3 let product = 1
4 for (let i=0; i < count; i++) {
5 let x = parseInt(prompt('Введите число ' + (i+1).toString()))
6 product *= x
7 }
8
9 console.log('product = ' + product)