For this question you writing code for named erin
. Change the if statement to a while loop so that erin
will continue turning left until...
Search Results
Individual Exercises
Complete the while loop so that the variable repetition
keeps track of how many times the first character in word
is repeated in a row at...
Given a current
temperature and the desired minimum
temperature, keep increasing current
by 0.5
degrees until it has either reached or...
The method below takes a String
parameter called str
. Complete the method so that it returns a new string where each each character in...
The following method takes a list of strings as a parameter and returns the number of times the character 'e' appears in all of the...
This method below currently sets the color of all of the pixels in the given Picture
to black. Modify the appropriate loop so that...
Implement the following method that takes a Picture
object called pic
so that it turns the bottom half of the image white. Do this using...
Say that a "character clump" in a string is a series of 2 or more adjacent copies of the same character. Return the number of character...
Implement the following method so that it counts the number of times the target
character appears in the given string and returns the...
Write a program that makes a decision and does something so that if the input is 1
the output is 0
and vice versa.
Write the code that...
Write a program that prompts the user to login, and displays appropriate messages according to whether the details are correct, partially...
Complete a program to encourage the user to do their chores before going to sleep. Begin by prompting the user Did you clean your room?...
Create a program that asks the user "In one word, how do you feel?\n"
and then gathers the user's response.
When the user enters either ...
Complete a program to simulate an echo. It should display "Hello! \n"
five times, but using only a single cout
statement with a for loop....
Complete a program to enter and show a list of exercises.
Prompt the user with "Hello! what is your workout schedule? (say 'done' to end...
Write a function in Python that implements the following logic: Given 2 int values a and b greater than 0, return whichever value is...
Write a function in Python that implements the following logic: The squirrels in Palo Alto spend most of the day playing. In particular,...
You have a green lottery ticket with three integers: a, b, and c. If all of the numbers are different on it, return 0. If two of the...
You have a green lottery ticket with three integers: a, b, and c. If all of the numbers are different on it, return 0. If two of the...
Complete the method countTimesContains
that returns the number of times the array words
contains the word stored in searchW
. Remember to...
Write a method searchInLastN
that implements a linear search but only looks for values in the last positions, determined by the parameter...
Given a binary tree, write a recursive function to return the difference between the sum of all node values at odd levels and sum of all...
A local grocery store has asked you to design a method to verify if their produce is okay to put on the shelves. The method takes an...
This method takes an integer array as a parameter and returns the minimum difference between adjacent values in the array. The difference...
Rewrite the function getElementAt()
so that it returns the element nth
in the array numbers
, but only if there is an element at that...