Advertisement
marto223

Programming Fundamentals-C# Loops exercises-01.Choose a drin

Aug 5th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class Program
  6. {
  7.  
  8. public static void Main()
  9. {
  10. string profession = Console.ReadLine();
  11. if (profession == "Athlete")
  12. {
  13. Console.WriteLine("Water");
  14. }
  15. else if (profession == "Bussinessman" || profession == "Bussinesswoman")
  16. {
  17. Console.WriteLine("Coffee");
  18. }
  19. else if (profession == "SoftUni Student")
  20. {
  21. Console.WriteLine("Beer");
  22. }
  23. else
  24. {
  25. Console.WriteLine("Tea");
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement