相邻两个数

Posted 荆楚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了相邻两个数相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
int main()
{
    vector<unsigned> scores;
    for (decltype(scores.size()) ix = 0; ix < 11; ++ix) {
        scores.push_back(ix);
    }
    //sort(scores.begin(), scores.end());
    //for (vector<unsigned>::iterator it = scores.begin(); *it < scores.size(); it++) {
    //    cout<<it
    //}
    for (decltype(scores.size()) ix = 0; ix < scores.size()-1;ix+=2 ) {
        cout << scores[ix] + scores[ix + 1] <<  ;
    }
    if (scores.size() % 2 != 0) {
        cout << "最后一个" << endl;
    }


    system("pause");
}

 

以上是关于相邻两个数的主要内容,如果未能解决你的问题,请参考以下文章

常用算法

数组A中任意两个相邻元素大小相差1,在其中查找某个数。

数组A中任意两个相邻元素大小相差1,在其中查找某个数。

用JavaScript实现排序算法

常用排序算法

一共有10个男生,让相邻的两个男生之间站一个女生,一共可以站进多少女生