application Of front() and back() function

Suman Barik
0

// CPP program to illustrate

// application Of front() and back() function

#include <iostream>

#include <vector>

using namespace std;


int main()

{

vector<int> myvector;

myvector.push_back(8);

myvector.push_back(7);

myvector.push_back(6);

myvector.push_back(5);

myvector.push_back(4);

myvector.push_back(3);

myvector.push_back(2);

myvector.push_back(1);


// Vector becomes 8, 7, 6, 5, 4, 3, 2, 1


if (myvector.front() > myvector.back()) {

cout << myvector.front() - myvector.back();

}

else if (myvector.front() < myvector.back()) {

cout << myvector.back() - myvector.front();

}

else

cout << "0";

}


Tags

Post a Comment

0Comments
Post a Comment (0)