Question
Returns: a String Name: makeThreeSubstr Parameters: - a String called word - an integer called startIndex - an integer called endIndex Then, starting on line
Returns: a String
Name: makeThreeSubstr
Parameters:
- a String called "word" - an integer called "startIndex" - an integer called "endIndex"
Then, starting on line 5, write code that will return 3x the substring (no spaces) from "startIndex" to "endIndex"
Examples:
- makeThreeSubstr("hello",0,2) ==> "hehehe" - makeThreeSubstr("shenanigans",3,7) ==> "naninaninani"
-----------------------------------------------------------------------------------------
1.class Main { 2. public static String makeThreeSubstr ()
3.
4. 5.{
}
//test case below (dont change): public static void main(String[] args) { System.out.println(makeThreeSubstr("hello", 0, 2)); //should be hehehe System.out.println(makeThreeSubstr("shenanigans", 3, 7)); //should be naninaninani } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started