Answer:
#include <iostream>
using namespace std;
bool isConsecutive(int values[], int size){
bool r = false;
int count=0;
for(int i=0;i<size;i++){
if(values[i]==values[i+1]){
count++;
if(count==3)
r=true;
}
else{
count=0;
}
}
return r;
}
int main() {
// Write C++ code here
int size;
cout<<"enter the number of integer in list"<<endl;
cin>>size;
int arr[size];
for(int i=0;i<size;i++){
cout<<"enter the value of number"<<endl;
cin>>arr[i];
}
bool result= isConsecutive(arr,size);
if(result){
cout<<"The list has consecutive fours numbers!"<<endl;
}
else{
cout<<"The list has no consecutive fours numbers!"<<endl;
}
return 0;
}
Explanation:
Above program is written in C++ language.
All bold-faced words and letters are C++ keywords.