コード例 #1
0
ファイル: Program.cs プロジェクト: itsmht/OOP2_Sp21_Final
        static void Main(string[] args)
        {
            var a = new Account("Putin", "1234", 12000);
            var b = new Account("Trump", "4321", 4000);

            a.Transfer(1000, b);
            a.showAllTransactions();
            b.showAllTransactions();
        }