コード例 #1
0
ファイル: Program.cs プロジェクト: posaunehm/TDDBC_Osaka_CS
        static void Main(string[] args)
        {
            var venderMachine = new VendorMachine();

            while (true) {
                Console.Write("購入可能なジュース");

                Console.Write("操作:1.お金を入れる, 2.購入, 3.やめる");

            }
        }
コード例 #2
0
 public void VenderMachineSetup()
 {
     venderMachine = new VendorMachine();
 }