Computer Science, asked by nareshketha68, 6 months ago

I code:
#include <iostream>
#include <algorithm
#include <vector>
using namespace std;
int main()
{
int myints[] = { 10, 20, 30, 30, 20, 10, 10, 20 };
vector int> v(myints, myints + 8);
sort(v.begin(), v.end());
vector int>::iterator low, up;
low = lower_bound(v.begin(), v.end(), 20);
na upper bound(v.begin(), v.end(), 20);
in​

Answers

Answered by adnankhan7032
0

Answer:

include <vector>; using namespace std;; int main (); {; int first[] = {5, 10, 15, 20, 25};; int second[] = {50, 40, 30, 20, 10};; vector<int> v( 10);

Answered by onedirection16
0

what is this mate code of what????

Similar questions