c++ problem Stones on the Table There are n stones on the table in a row, each of them can be red, green or blue. Count the minimum number of stones to take from the table so that any two neighboring stones had
- برمجة سي بلس بلس
- 2022-04-04
- owis1234
الأجوبة
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x,c=0;
cin>>x;
string s;
cin>>s;
for(int i=0;i<x-1;i++)
{
if(s[i]==s[i+1])
{
c++;
}
}
cout<<c<<endl;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال