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 SortVectorstd::vector& numbers
std::sortnumbersbegin numbers.end std::greater;
int main
int numCount;
std::cin numCount;
std::vector numbersnumCount;
Input the numbers into the vector
for int i ; i numCount; i
std::cin numbersi;
SortVectornumbers;
Output the sorted vector with commas
for int i ; i numCount; i
std::cout numbersi;
Add a comma if it's not the last element
if i numCount
std::cout ;
std::cout std::endl; Add a new line at the end of the output
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
