Question: The method printGroupSize ( ) has a string parameter. Define a second printGroupSize ( ) method that has an integer parameter. The second method outputs

The method printGroupSize() has a string parameter. Define a second printGroupSize() method that has an integer parameter.
The second method outputs the following in order, all on one line:
\(\cdot \) "Headcount provided: "
- the value of the integer parameter
End with a newline.
Ex: If the input is two 2, then the output is:
The group needs a room for two.
Headcount provided: 2
```
import java.util.Scanner;
public class Groupsize {
public static void printGroupSize(String groupSize){
System.out.println("The group needs a room for "+ groupSize +".");
}
/* Your code goes here */
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String sizeInWord;
int sizeOfGroup;
sizeInWord = scnr.next();
sizeOfGroup = scnr.nextInt();
printGroupSize(sizeInWord);
```
The method printGroupSize ( ) has a string

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 Programming Questions!