Last active
December 25, 2015 23:09
-
-
Save mohemohe/7054676 to your computer and use it in GitHub Desktop.
Omanko!
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 Omanko_ | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
string[] omanko = { "お", "ま", "ん", "こ" }; | |
string iku = "おぉぉお゛~っ!!イグゥウ!!イッグゥウウ!!"; | |
var rand = new Random(); | |
var check = new string[4]; | |
int count = 1; | |
while (true) | |
{ | |
int i = rand.Next(4); | |
check[3] = omanko[i]; | |
Console.Write(omanko[i]); | |
if (check[0] + check[1] + check[2] + check[3] == "おまんこ") | |
{ | |
break; | |
} | |
for (int j = 0; j <= 2; j++) | |
{ | |
check[j] = check[j + 1]; | |
} | |
count++; | |
} | |
Console.WriteLine("\n\n" + iku + "\n"); | |
Console.WriteLine((count - 4) + "回目で果てました...\n"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment