Write a method called multiconcat that takes a string and an integer as parameters. return a string that consists of the string parameter concatenated with itself count times, where count is the integer parameter. for example, if the parameter values are "hi" and 4, the return value is "hihihihi". return the original string if the integer parameter is less than 2

Solved
Show answers

Ask an AI advisor a question