コード例 #1
0
ファイル: Pastry.cs プロジェクト: CodingMoore/Bakery.Solution
        public static int PastryPrice()
        {
            int total = (Pastry.PastryCount() * 2) - ((Pastry.PastryCount() / 3) * 1);

            return(total);
        }