NedyalkoKikov

StringCompare

Jun 7th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace StringCompare
  8. {
  9. class StringCompare
  10. {
  11. static void Main()
  12. {
  13. string w = "Sofia";
  14. string s1 = "Plovdiv";
  15. if(w .CompareTo(s1) > 0)
  16. {
  17. Console.WriteLine("Sofia is biggest than Plovdiv");
  18. }
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment