Question: java program that takes as input one String and breaks it into three chuncks (start, middle, end). The user inputted String length will always be

java

program that takes as input one String and breaks it into three chuncks (start, middle, end). The user inputted String length will always be multiple of three - starting with 3, 6, 9, 12, 15, 18, 21, etc.

( cannot use iterative or conditional statements in your program. )

Example 1: String length is 3

Input: ABC

Output:

Start is: A

Middle is: B

End is: C

Example 2: String length is 6

Input: Apples

Output:

Start is: Ap

Middle is: pl

End is: es

Example 3: String length is 12

Input: Hello World!

Output:

Start is: Hell

Middle is: o Wo

End is: rld!

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!