JS Book 10. Функции -
Здравейте,
по някаква причина Джъдж не приема решението на тривиална задача - пробвах различни варианти, но не.
кода ми е:
function top() {
console.log("CASH RECEIPT");
console.log("------------------------------");
}
function mid() {
console.log("Charged to____________________");
console.log("Recieved by___________________");
}
function bot() {
console.log("------------------------------");
console.log("(c) SoftUni");
}
function receipt() {
top();
mid();
bot();
}
receipt();
условие на задачата:
https://js-book.softuni.bg/chapter-10-functions.html
Може ли съвет как да подам решението към джъдж за да го приеме?
Здравей - - играно вече и в двата варианта но проблема остава:
function firstProblem() {
function top() {
console.log("CASH RECEIPT");
console.log("------------------------------");
}
function mid() {
console.log("Charged to____________________");
console.log("Recieved by___________________");
}
function bot() {
console.log("------------------------------");
console.log("(c) SoftUni");
}
function receipt() {
top();
mid();
bot();
}
receipt();
}
на задача 3 следното решение минава без проблем:
function triangle(n) {
let index = 0;
n = Number(n[index]);
function grow(amount) {
for (let i = 1; i <= amount; i++) {
let row = "";
for (let j = 1; j <= i; j++) {
row += " ";
row += j;
}
console.log(row);
}
}
function decrease(amount) {
for (let i = amount; i >= 1; i--) {
let row = "";
for (let j = 1; j <= i; j++) {
row += " ";
row += j;
}
console.log(row);
}
}
grow(n);
decrease(n - 1);
}
не знам какво става.