use for loop to request for 3 values to be inputted and sorted for the greatest number,and display the greatest value
NB: your program should cater for cases where we have two greater values and when all are of the same value.
1) create a vector or an array
2 a) use a for loop
2 b) ask the user to enter three numbers - cin >> number;
2 c) store the number in the vector or array - numbers.push_back(number);
3 a) write a function to check for greatest value
3 b) return the greatest value
* if you want them sorted, use a sorting algorithm to sort them for example here is a hint