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
Get step-by-step solutions from verified subject matter experts
