コード例 #1
0
    static void Main(string[] args)
    {
        HarvestingFieldsTest test = new HarvestingFieldsTest();

        string command;

        while ((command = Console.ReadLine()) != "HARVEST")
        {
            test.Print(command);
        }
    }
コード例 #2
0
        public static void Main(string[] args)
        {
            HarvestingFieldsTest test = new HarvestingFieldsTest();

            Console.WriteLine(test.Run());
        }