Write a Scala program to count the number of triples (characters appearing three times in a row) in a given string
- برمجة سكالا
- 2021-09-24
- mhanasmh00489829403
الأجوبة
object Scala_String {
def test(stng: String): Int = {
var l = stng.length();
var ctr = 0;
for (i <- 0 to l-3)
{
var tmp = stng.charAt(i);
if (tmp == stng.charAt(i+1) && tmp == stng.charAt(i+2))
ctr=ctr+1;
}
return ctr;
}
def main(args: Array[String]): Unit = {
val str1 = "welllcommmmeee";
println("The given string is: "+str1);
println("The number of triples in the string is: "+test(str1));
}
}
Sample Output:
The given string is: welllcommmmeee The number of triples in the string is: 4
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة