Показать сообщение отдельно
  #2 (permalink)  
Старый 25.12.2016, 22:10
Аватар для Paguo-86PK
Профессор
Отправить личное сообщение для Paguo-86PK Посмотреть профиль Найти все сообщения от Paguo-86PK
 
Регистрация: 16.09.2009
Сообщений: 253

<script>
var clunkCounter = 0;

function clunk(times) {
    var num = times;
    while(num > 0) {
        display("clunk");
        num --;
    }
}

function thingamajig(size) {
    var facky = 1;
    clunkCounter = 0;
    if(size == 0) {
        display("clank");
    } else
    if(size == 1) {
        display("thunk");
    } else {
        facky = size * (size + 1) / 2;
    }
    clunk(facky);
}

function display(output) {
    console.log(output);
    clunkCounter = clunkCounter + 1;
}

thingamajig(0);
console.log(clunkCounter);

clunkCounter = 0;
thingamajig(1);
console.log(clunkCounter);

clunkCounter = 0;
thingamajig(2);
console.log(clunkCounter);

clunkCounter = 0;
thingamajig(3);
console.log(clunkCounter);

clunkCounter = 0;
thingamajig(4);
console.log(clunkCounter);

clunkCounter = 0;
thingamajig(5);
console.log(clunkCounter);
</script>

Последний раз редактировалось Paguo-86PK, 25.12.2016 в 22:13.
Ответить с цитированием