Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections.Generic;
  6.  
  7. namespace ConsoleApplication1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             List<string> lol = new List<string>();
  14.             lol.Add("fat when she went to the movies she sat next to everyone");
  15.             lol.Add("fat she eats Wheat Thicks.");
  16.             lol.Add("stupid she tried to put her m&ms in alphabetical order");
  17.             lol.Add("poor when I went to rob her house i went in the front door and tripped out the back.");
  18.             lol.Add("poor she has the ducks throw bread at her");
  19.             lol.Add("bald, when she puts on a turtle neck she looks like a roll on deodorant.");
  20.             lol.Add("bald you can see whats on her mind");
  21.             lol.Add("bald that she took a shower and got brain-washed.");
  22.             lol.Add("hairy the only language she speaks is wookie");
  23.             lol.Add("hairy she wears a Nike tag on her weave so now everybody calls her Hair Jordan.");
  24.             lol.Add("greasy that her face could free the U.S. from its dependence on foreign oil.");
  25.  
  26.             while (true){
  27.                 Random r = new Random();
  28.                 string joke = "Yo mama so " + lol[r.Next(0, lol.Count)];
  29.                 Console.WriteLine(joke);
  30.             }
  31.             Console.ReadLine();
  32.  
  33.         }
  34.         }
  35.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement