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 then the output is:
The group needs a room for two.
Headcount provided:
import java.util.Scanner;
public class Groupsize
public static void printGroupSizeString groupSize
System.out.printlnThe group needs a room for groupSize ;
Your code goes here
public static void mainString args
Scanner scnr new ScannerSystemin;
String sizeInWord;
int sizeOfGroup;
sizeInWord scnrnext;
sizeOfGroup scnrnextInt;
printGroupSizesizeInWord;
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
