Created
December 24, 2015 19:55
-
-
Save Buildstarted/0fd5cbcf01dbfe75229a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace MerryChristmas | |
{ | |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
Console.WriteLine(RandomString(-993131628) + " " + RandomString(-2146778827)); | |
Console.ReadKey(); | |
} | |
public static String RandomString(int i) | |
{ | |
var ran = new Random(i); | |
var result = ""; | |
while (true) | |
{ | |
int k = ran.Next(27); | |
if (k == 0) | |
{ | |
break; | |
} | |
result += (char)('`' + k); | |
} | |
return result; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment