Write a function called exchange
that receives two char
s and permanently exchanges their values so each one has the value that the other...
Search Results
Searching for: io
Individual Exercises
Complete the function toggleAvailability
that toggles the availability
of the parameter apartment
and updates it so that if it was...
Consider already having a class called gradebook
that manages a student's grades for a class, but you want to define the following member...
Consider already having a class called gradebook
that manages a student's grades for a class, but you want to define the following member...
Below is a ChessPiece
class that we will be using as a superclass for a Queen
subclass.
public class ChessPiece { // the location of this...
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 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 jamie
. Change the else clause so that jamie
will turn right instead of hop when there is no...
You are writing code using a jeroo named jamie
. Change the code so that jamie
will turn right if a flower is to the right, or hop...
You are writing code using a jeroo named jamie
. The following if-then-else statement will not compile because of a syntax error. Fix the...
You are writing code using a jeroo named jamie
, who is holding a flower. Change the following if statement so that if jamie
sees water on...
You are writing code using a jeroo named jaime
. Change the following if-then-else statement to an if-then, so that jaime
does nothing if...
You are writing code using a jeroo named jaime
. Change the following if-then-else statement to an if-then (remove the else part), so that...