Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
1.9.7 For Loop Square CodeHS
function start() { for(var i = 0; i < 4; i++) { move(); putBall(); turnLeft(); } }
1.9.6 Dizzy Karel CodeHS Answers
function start() { for(var i = 0; i < 32; i++) { turnLeft(); } }
1.9.5 Take ’em All CodeHS Answers
function start() { move(); for(var i = 0; i < 100; i++) { takeBall(); } move(); }
function start()
See less{
move();
for(var i = 0; i < 100; i++) { takeBall(); } move();
}
1.8.4 The Two Towers + SuperKarel CodeHS Answers
function start() { buildTower(); buildTower2(); // Write your code here } function buildTower() { move(); turnLeft(); putBall(); move(); putBall(); move(); putBall(); turnLeft(); turnLeft(); move(); move(); turnLeft(); } function buildTower2() { move(); move(); turnLeft(); putBall(); move(); putBallRead more
function start()
See less{
buildTower();
buildTower2();
// Write your code here
}
function buildTower()
{
move();
turnLeft();
putBall();
move();
putBall();
move();
putBall();
turnLeft();
turnLeft();
move();
move();
turnLeft();
}
function buildTower2()
{
move();
move();
turnLeft();
putBall();
move();
putBall();
move();
putBall();
move();
turnRight();
}
1.7.4 The Two Towers + Comments CodeHS Answers
function start() { buildTower();///hhahhah captian obvious buildTower2();///why am i doing this, can’t this just submit already? // So like literally this just calls in the buildTower functions lol } function buildTower() // This one literally builds the towers and goes down { move(); //move turnLefRead more
function start()
See less{
buildTower();///hhahhah captian obvious
buildTower2();///why am i doing this, can’t this just submit already?
// So like literally this just calls in the buildTower functions lol
}
function buildTower() // This one literally builds the towers and goes down
{
move(); //move
turnLeft(); //turn
putBall(); //puttingBall
move(); //move
putBall(); //putting ball
move(); //move
putBall(); //putting ball
turnLeft(); //turn
turnLeft(); //turn
move(); //moving
move(); //moing again
turnLeft(); //turning again
}
function buildTower2() // This one is how to build the second tower becaues for some reason this one is a bit different from the first
{
move();//aaa
move();//aaa
turnLeft();//aa
putBall();//a
move();//a
putBall();//a
move();//a
putBall();//a
move();//aaaaa
turnRight();//aaaaaa
}
function turnRight() // This is so self explanatory i don’t even see whsy I need to explain this lool
{
turnLeft();//yeet
turnLeft();//xd
turnLeft();//exdeeh
}
1.6.4 The Two Towers
function start() { buildTower(); buildTower2(); // Write your code here } function buildTower() { move(); turnLeft(); putBall(); move(); putBall(); move(); putBall(); turnLeft(); turnLeft(); move(); move(); turnLeft(); } function buildTower2() { move(); move(); turnLeft(); putBall(); move(); putBallRead more
function start()
See less{
buildTower();
buildTower2();
// Write your code here
}
function buildTower()
{
move();
turnLeft();
putBall();
move();
putBall();
move();
putBall();
turnLeft();
turnLeft();
move();
move();
turnLeft();
}
function buildTower2()
{
move();
move();
turnLeft();
putBall();
move();
putBall();
move();
putBall();
move();
turnRight();
}
function turnRight()
{
turnLeft();
turnLeft();
turnLeft();
}
1.5.4 Pancakes with Start CodeHS Answers
function makePancakes() { putBall(); putBall(); putBall(); } function start() { move(); makePancakes(); move(); move(); makePancakes(); move(); move(); makePancakes(); move(); }
function makePancakes()
See less{
putBall();
putBall();
putBall();
}
function start()
{
move();
makePancakes();
move();
move(); makePancakes(); move(); move(); makePancakes(); move();
}