0
Help plus, i m new
"Повторение - мать учения, отец действия, что делает его архитектором достижения." – Зиг Зиглар. Вдохновляясь этими словами, давайте создадим небольшую программу, которая будет 3 раза выводить выражение, полученное в качестве входных данных. Задача Завершите код, чтобы вывести данное выражение 3 раза. Пример Входных Данных Learning is fun! Пример Выходных Данных Learning is fun! Learning is fun! Learning is fun!
5 Réponses
+ 4
You need to apply the syntax properly.
for(var i = 0; i<5;i++){
console.log("ShAzAM")
}
It will print ShAzAM 5 times in a new line.
Similarly, you need to print the input as output as much as they asked.
+ 1
First show whatever you have tried.
Use for loop and print input value
+ 1
console.log("Learning is fun!\n".repeat(3));
0
for (; 3 time; console.log(expression, expression, expression)){
}
0
for(I=0; I <3; I++)
console.log(inputted string);