The following statements move a Jeroo
forward two steps. Insert new method calls between the two statements to turn left twice, so that...
Search Results
Searching for: method
Individual Exercises
Write a method called plantThree()
that can be added to a Jeroo
subclass. The method should plant a flower and hop, and repeat that...
Write a method called turnAroundLeft()
that can be added to a Jeroo
subclass. The method should turn to the left, hop forward, and turn...
You will write a method called plantThreeRowsOfThree()
that can be added to a Jeroo
subclass. The method should plant three rows of three...
Add a new else if statement to the conditional below. if the jeroo named charles
sees a net ahead if it, it should run the toss method.
For this question, you have access to a Jeroo named amy
. Add in an else statement to the following cascaded if that will set the int...
For this question you can assume you have access to two jeroo variables. One named tom
and one named jerry
.
Change the if statement so...
For this question you can assume you have access to two jeroo variables. One named tom
and one named jerry
.
Change the if statement so...
For this question you can assume you have access to three jeroo variables. One named tom
, one named steve
, and one named jerry
.
Change if...
For this question you writing code for named erin
. Change the if statement to a while loop so that erin
will continue turning until erin
...
For this question you can assume you have access to three jeroo variables. One named tom
, one named steve
, and one named jerry
.
Add in...
For this question you can assume you have access to one jeroo variable named lakin
. Add in the conditional for the following while loop....
For this question you can assume you have access to one jeroo variable named rose
. Add in the conditional for the following while loop....
For this question you can assume you have access to one jeroo variable named luan
. Add in the conditional for the following while loop....
For this question you will write a method that takes a jeroo named paige
. Write an if statement to handle the following logic.
If paige
...
For this question you will write a method that takes a jeroo named ken
. Write an if statement to handle the following logic: If ken
has a...
For this question assume you have access to a jeroo variable named emily
.
For this question, a jeroo could be facing in any direction....
For this question write the method pickAll()
. Your method is given a jeroo named katie
. Write a while loop that will continually hop and...
Using both a set of if statements and a set of while loops write code to support the following logic. For this question assume you have...
You are writing code using a jeroo named charles
who is currently holding a flower. Change the condition in this if-then-else statement...
A Jeroo
named pat
is at the jeroo olympics to cheer on two friends competing in the high jump. These jeroos can jump super high....
A Jeroo
named pat
only wakes up and hops when it is time. Implement the following method called wakeUp()
that takes pat
, two integers,...
A Jeroo
named pat
is hosting a party for the other jeroos on the island. A jeroo party will be a huge success when the number of flowers...
For this problem you will use this class:
public class Rectangle { private int length; private int width; public void setLength(int len)...
If you are given three sticks, you may or may not be able to arrange them in a triangle.
For any three lengths, there is a simple test to...