hoge

  • タグ:
  • タグはありません
# include <iostream>
# include <string>
# include <random>
void main()
{
	std::string s;
	std::random_device rd;
	std::mt19937 mt(rd());
	std::string otinpo[4] =
	{
		"お",
		"ち",
		"ん",
		"ぽ",
	};

	while (s.find("おちんぽ") == std::string::npos)
	{
		s += otinpo[mt() % 4];
	}
	
	std::cout << s << std::endl;
	std::cout << s.length() / 2 << "回目で果てました..." << std::endl;
}