CCF认证真题-(201509-1)-数列分段
Posted antonliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF认证真题-(201509-1)-数列分段相关的知识,希望对你有一定的参考价值。
1 #include <iostream> 2 using namespace std; 3 int main() 4 5 ios::sync_with_stdio(false); 6 cin.tie(0); 7 8 int n; 9 cin >> n; 10 int pre; 11 cin >> pre; 12 int ans = 1; 13 for (int i = 1; i < n; i++) 14 int x; 15 cin >> x; 16 if (x != pre) 17 ans++; 18 pre = x; 19 20 21 cout << ans << endl; 22 return 0; 23
以上是关于CCF认证真题-(201509-1)-数列分段的主要内容,如果未能解决你的问题,请参考以下文章