nathanroberts9938 nathanroberts9938 03-01-2023 Computers and Technology Answered Implement an operator* operator function so that one can repeat strings a given number of times. for example, string greeting = "hi"; string result = greeting * 3; should set result to "hihihi".