Advertisement
viraco4a

Untitled

Mar 12th, 2018
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SlotMachine
  4. {
  5. class Program
  6. {
  7. static void Main()
  8. {
  9. string result = string.Empty;
  10. for (int i = 0; i < 3; i++)
  11. {
  12. char n = char.Parse(Console.ReadLine());
  13. int n1 = int.Parse(Console.ReadLine());
  14. char newChar = (char)(n + n1);
  15. result += newChar;
  16. }
  17. Console.WriteLine(result);
  18. if (result == "@@@")
  19. {
  20. Console.WriteLine("!!! YOU LOSE EVERYTHING !!!");
  21. }
  22. else if (result == "777")
  23. {
  24. Console.WriteLine("*** JACKPOT ***");
  25. }
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement