-
-
Save jz5/5c35ec19bba2a5cd66a7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| string[,] s = { { "古池や", "柿くえば" }, | |
| { "蛙飛びこむ", "鐘がなるなり" }, | |
| { "水の音", "法隆寺" } }; | |
| var r = new Random(); | |
| for (var i = 0; i < 3; i++) | |
| { | |
| Console.WriteLine(s[i, r.Next(100) % 2]); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment