| Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Prepared by Halil Karimis.
 
 
 Student Line Up
A teacher has asked all her students to line up single line according to their first name.
For example, in one class Amy will be at the front of the line and
Yolanda will be at the end. 
Question:
Write a program that prompts the user to enter the number of students in the class, and then
loops to read in that many names. Once all the names have been read in, the program reports 
the order of the students in the line.
 
Input specification  The program will get the a number (n) first, and then it gets n names which are all string at most
with 16 chars and 1 < n ≤ 100.
 Output specification  Print out the order of the students in the class in alphabetical order.
 
  | Sample Run I 
 
  7 Sabina
 Beki
 Nilda
 Elton
 Xheni
 Bajram
 Enea
 
 Sample Output I   
 
  BajramBeki
 Elton
 Enea
 Nilda
 Sabina
 Xheni
 
 | Sample Input II 
 
  5 Sample Output IIYolanda
 Erind
 Amy
 Ardit
 Ledio
 
 
 
 
 
  AmyArdit
 Erind
 Ledio
 Yolanda
 
 |   Sample Explanation   "Beki" and "Bajram" both start with 'B' letters, and according to ASCII values "Bajram" is before "Beki".
 In C, you can use strcmp (in string.h library) to compare strings.
 
 
   int strcmp ( const char * str1, const char * str2 );
In C++, you can compare strings as you compare integers. For example, if name1 and name2 are string variables
  string name1="Beki", name2="Bajram";
when you compare them in your code,
  if(name1 < name2) ...
It will produce false result for the comparision there because "Beki" (according to ASCII values) is greater than "Bajram".
 Для отправки решений необходимо выполнить вход.
 
 
 |