Question: Write a method that takes a sentence and returns a new sentence based on how a teenager might say that. The way to do that
Write a method that takes a sentence and returns a new sentence based on how a teenager might say that.
The way to do that is to put the word "like" in between each of the words in the original sentence.
For example, teenTalk("That is so funny!") would return "That like is like so like funny!".
The method signature should be
private String teenTalk(String sentence)
public String teenTalk(String sentence) { // Your like code like here }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
