Question: Write the method printPattern, which takes a String and the number of rows of the triangle, and it prints the String organized in a

Write the method printPattern, which takes a String and the number of rows of the triangle, and it prints the String organized in a right-angled triangle shape with the specified rows. As seen in the examples below, the string repeats throughout the triangle, rolling over to the next row as needed. The following shows several examples of calls to printPattern and the expected output. Assume that the number of rows is > 0 and the string is not empty. Here are some sample runs: printPattern("ABC", 3) results in: A BC ABC printPattern("abcde", 10) results in: bc dea bcde abcde abcdea bcdeabc deabcdea bcdeabcde abcdeabcde printPattern("Happy", 8) results in: H ap pyH appy Happy HappyH appyHap pyHappyH Edit Format Table 12pt Paragraph B I U A
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
