0
Problem Snail in the well
function main() { var depth = parseInt(readLine(), 10); //your code goes here var feet = 7-2; var day = 1; while (feet <= 31) { document.write(feet + day "<br />"); feet ++; } } Struggling with problem Snail in the well
2 Respostas
+ 1
function main() {
var depth = parseInt(readLine(), 10);
//your code goes here
/*climb 7 feet and got down 2 feet.ultimately climb up 5 */
var day=depth/5;
var r=Math.round(day);
console.log(r);
}