Advertisement
Guest User

Untitled

a guest
Jul 15th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 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 meme
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("nigger, what is your first name?");
  14. string nigaName = Console.ReadLine();
  15.  
  16. Console.WriteLine("nigger, what is your last name?");
  17. string niggaName = Console.ReadLine();
  18.  
  19. bool isTyrone = nigaName == "Tyrone";
  20.  
  21. if (isTyrone == true)
  22.  
  23. {
  24. Console.WriteLine("welcome nigguh");
  25. }
  26.  
  27. else if (nigaName == "Aaron")
  28.  
  29. {
  30. bool isWilson = niggaName == "Wilson";
  31.  
  32. if (isWilson == true)
  33.  
  34. {
  35. Console.WriteLine("you are extremely gay");
  36. }
  37.  
  38. else
  39.  
  40. {
  41. Console.WriteLine("fuck off nigguh u are white");
  42. }
  43. }
  44.  
  45. else
  46. {
  47. Console.WriteLine("fuck off nigguh u aint black");
  48. }
  49. }
  50. }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement