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

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