Question: String animalFields is read from input and contains multiple animals all on the same line. Assign convertedAnimalFields with a copy of animalFields where all occurrences

String animalFields is read from input and contains multiple animals all on the same line. Assign convertedAnimalFields with a copy of animalFields where all occurrences of "cougar" are replaced with "bee".
Ex: If the input is cougar; cougar; lizard; robin, then the output is:
bee; bee; lizard; robin
import java.util.Scanner;
public class ReplaceStrings {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String animalFields;
String convertedAnimalFields;
animalFields = scnr.nextLine();
/* Your code goes here */
System.out.println(convertedAnimalFields);
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!