Write a program that prompts the user to input four Integers and then Display which Number is Greater and which one is Smaller
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main (){
cout<<"Enter four numbers, please...\n";
vector<int> numbers;
int temp;
for (int i = 0 ; i < 4 ; i++){
cin>>temp;
numbers.push_back(temp);
}
cout<<"The greatest of the numbers is: "<<*max_element(numbers.begin(),numbers.end())<<endl;
cout<<"The smallest of the numbers is :"<<*min_element(numbers.begin(),numbers.end())<<endl;
system("pause");
return 0;
}