Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Problem Statement: Sort String Values in AscendingOrder You are required to writ

ID: 3610553 • Letter: P

Question

Problem Statement: Sort String Values in AscendingOrder

You are required to write a program that accepts 5 input stringsfrom the user. After sorting strings into ascending order thestring will be displayed.


Detailed Description:

1. Declare a character type string array.

2. Usefor loop

3. Getfive string values from the user

4. Sortthem in ascending order

5. Display them after sorting

6. Ascending order means string values starting from ‘a’will come first, and then starting from ‘b’ and soon.

Sample Output

enter string1 : Muhammad

enter string2 : Abdullah

enter string3 : Usman

enter string4 : Ali

enter string5 : Noureen

Sorted string

Abdullah

Ali

Muhammad

Noureen

Usman

Explanation / Answer

//if Problem=Solvedthen // rate =best

#include<iostream> #include<conio.h> #include<string> using namespace std;
void swap(string*, int ,int ); void sort(string*);
int main(){    string strings[5];       for(int i=0;i<5;i++)//taking userinput    {    cout<<"Enter String"<<i+1<<":";    cin>>strings[i];          }    sort(strings);//calling sort function            for(int i=0;i<5;i++){//print names    cout<<strings[i]<<endl;    }    cout<<endl;
} ///==================================// void swap(string *str, int i, int j)    {    string temp;    temp = str[i];    str[i] = str[j];    str[j] = temp;    } void sort (string *str)   {    for(int i=0;i<5;i++)    {    for(intj=i+1;j<5;j++)    {      if(str[i].compare(str[j]) >0)      {      swap(str, i, j);      }    }    }   }
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote