Question: CHALLENGE ACTIVITY 6 . 1 2 . 1 : Method name overloading. 5 2 8 0 4 0 . 3 4 8 9 5 2
CHALLENGE
ACTIVITY
: Method name overloading.
Jump to level
The method printGroupSize has an integer parameter. Define a second printGroupSize method that has a string parameter. The second method outputs the following in order, all on one line:
"The group has"
the value of the string parameter
"person."
End with a newline.
Ex: If the input is one, then the output is:
Headcount provided:
The group has one person.
import java.util.Scanner;
public class GroupSize
public static void printGroupSizeint groupSize
System.out.printlnHeadcount provided: groupSize;
Y Your code goes here
public static void mainString args
Scanner scnr new Scanner
System.in;
int sizeofGroup;
string sizeInWord;
sizeofGroup scnr nextInt ;
sizeInWord next ;
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
