Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- using namespace std;
- int main() {
- int n;
- int total=0;
- cin>>n;
- vector <int> v (n);
- for (int i=0; i<n; i++) cin>>v[i];
- for (int i=0; i<(n-1); i++) if (v[i]==v[n-1]) total++;
- cout<<total<<endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment