Write a Ruby program to create a new string from a given string using the first three characters or whatever is there if the string is less than length 3. Return n copies of the string.
Ruby Code:
def multiple_string(str, n) str.length < 3 ? str*n : str[0..2]*n end print multiple_string('abcdefg', 1),"\n" print multiple_string('abcdefg', 2),"\n" print multiple_string('abcdef', 1),"\n" print multiple_string('abcdef', 2),"\n" print multiple_string('abc', 1),"\n" print multiple_string('ab', 2),"\n"
abc abcabc abc abcabc abc abab
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Ruby Code: