Question: #include #include #include / / Function to sort the vector in descending order void SortVector ( std::vector& numbers ) { std::sort ( numbers . begin

#include
#include
#include
// Function to sort the vector in descending order
void SortVector(std::vector& numbers){
std::sort(numbers.begin(), numbers.end(), std::greater());
}
int main(){
int numCount;
std::cin >> numCount;
std::vector numbers(numCount);
// Input the numbers into the vector
for (int i =0; i < numCount; i++){
std::cin >> numbers[i];
}
SortVector(numbers);
// Output the sorted vector with commas
for (int i =0; i < numCount; i++){
std::cout << numbers[i];
// Add a comma if it's not the last element
if (i != numCount -1){
std::cout <<",";
}
}
std::cout << std::endl; // Add a new line at the end of the output
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!