CCF_201409-1_相邻数对
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201409-1_相邻数对相关的知识,希望对你有一定的参考价值。
水。
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main() { int n,a[1005]; cin >> n; for(int i = 1;i <= n;i++) cin >> a[i]; sort(a+1,a+n+1); int num = 0; for(int i = 1;i < n;i++) { if(a[i+1]-a[i] == 1) num++; } cout << num << endl; return 0; }
以上是关于CCF_201409-1_相邻数对的主要内容,如果未能解决你的问题,请参考以下文章