This program asks the user to enter 4 names for a team, storing them in an array of Strings.
This program asks the user to enter 4 names for a team,
storing them in an array of Strings.
Then the program changes the array, replacing the first
team member with Craig. Then this modified list of
names is printed on the screen. You can see sample
output at the end of this file.
1) inputTeam: Input and return an array of Strings,
with the specified number of elements (one int parameter).
2) substitute: Has 3 parameters: an array of Strings,
and two String names. Changes the array by replacing the
element containing the nameToRemove with the nameToAdd.
3) outputArray: Has 1 parameter: an array of Strings.
Outputs all the array elements, separated by spaces.
import java.util.Scanner;
class Main
{
public static void main(String[] args)
{
String[] team;
String nameToRemove, nameToAdd;
System.out.println("Please enter 4 names for this team:");
team = inputTeam(4);
nameToRemove = team[0];
nameToAdd = "Craig";
System.out.println("Sorry, we need to replace " + nameToRemove
+ " with " + nameToAdd);
substitute(team, nameToRemove, nameToAdd);
System.out.println("Here is your team:");
outputArray(team);
}
// DO NOT CHANGE THE ABOVE CODE.
// WRITE YOUR CODE FOR THE 3 FUNCTIONS HERE.
}
/* Sample output
(PLEASE REPLACE THIS WITH THE OUTPUT THAT YOU GET):
Please enter 4 names for this team:
Mandarin
Katy
Shang-Chi
Leiko
Sorry, we need to replace Mandarin with Craig
Here is your team:
Craig Katy Shang-Chi Leiko
Please enter 4 names for this team:
Hector
Miguel
Ernesto
Imelda
Sorry, we need to replace Hector with Craig
Here is your team:
Craig Miguel Ernesto Imelda
*/
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images