标签:cout 不同 col 描述 color html 用例 nbsp 不同的
CCF计算机职业资格认证考试题解系列文章为meelo原创,请务必以链接形式注明本文地址
首先排序,然后计算相邻两个数的差。
C++
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int N; cin >> N; vector<int> a(N); for(int n=0; n<N; n++) { cin >> a[n]; } sort(a.begin(), a.end()); int cnt = 0; for(int n=0; n<N-1; n++) { if(abs(a[n]-a[n+1])==1) { cnt++; } } cout << cnt; }
标签:cout 不同 col 描述 color html 用例 nbsp 不同的
原文地址:http://www.cnblogs.com/meelo/p/7677692.html