Question: Strings group 1 and group 2 are read from input. Each string represents a list of animal ( s ) surrounded by [
Strings group and group are read from input. Each string represents a list of animals surrounded by and
Assign combinedAnimals with the concatenation of group and group in the order read.
Assign everythingList with a string that contains all the animals in group and group in the order read, separated by and surrounded by and
Ex: If the input is:
bison
penguin
then the output is:
All groups in one line: bisonpenguin
one group of all animals: bison penguin
import java.util.Scanner;
public class JoinMultipleFields
public static void mainString args
Scanner scnr new Scanner
System.in;
String group;
String group;
String combinedAnimals;
String everythingList;
group nextline ;
group scnrnextline;
System.out.printlnAll groups in one line: combinedAnimals;
System.out.printlnOne group of all animals: everythingList;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
