Write a Scala program to repeat a specific number of characters for specific number of times from the last part of a given string
- برمجة سكالا
- 2021-09-24
- mhanasmh00489829403
الأجوبة
object Scala_String {
def test(stng: String, no_repeat: Int): String = {
val l = stng.length;
var new_word = "";
for (i <- 0 to no_repeat - 1) {
new_word += stng.substring(l - no_repeat, l);
}
new_word;
}
def main(args: Array[String]): Unit = {
val str1 = "string";
val no_char = 3;
println("The given string is: " + str1);
println("The new string after repetition: " + test(str1, no_char));
}
}
Sample Output:
The given string is: string The new string after repetition: inginging
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة