-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
67 lines (54 loc) · 2.72 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using System;
namespace Challenge
{
class Program
{
static void Main(string[] args)
{
// Create the Checking Account with initial balance
CheckingAcct checking = new CheckingAcct("John", "Doe", 2500.0m);
// Create the Savings Account with interest and initial balance
SavingsAcct saving = new SavingsAcct("Jane", "Doe", 0.025m, 1000.0m);
// Check the balances
// Expected output should be 2500 and 1000 at this point
Console.WriteLine($"Checking balance is {checking.Balance:C2}");
Console.WriteLine($"Savings balance is {saving.Balance:C2}");
// Print the account owner information. Expected output:
// "Checking owner: John Doe"
// "Savings owner: Jane Doe"
Console.WriteLine($"Checking owner: {checking.AccountOwner}");
Console.WriteLine($"Savings owner: {saving.AccountOwner}");
// Deposit some money in each account
checking.Deposit(200.0m);
saving.Deposit(150.0m);
// Check the balances
// Expected output should be 2700 and 1150 at this point
Console.WriteLine($"Checking balance is {checking.Balance:C2}");
Console.WriteLine($"Savings balance is {saving.Balance:C2}");
// Make some withdrawals from each account
checking.Withdraw(50.0m);
saving.Withdraw(125.0m);
// Check the balances
// Expected output should be 2650 and 1025 at this point
Console.WriteLine($"Checking balance is {checking.Balance:C2}");
Console.WriteLine($"Savings balance is {saving.Balance:C2}");
// Apply the Savings interest
saving.ApplyInterest();
// Savings balance should now be 1050.63
Console.WriteLine($"Savings balance is {saving.Balance:C2}");
// More than 3 Savings withdrawals should result in 2.00 charge
saving.Withdraw(10.0m);
saving.Withdraw(20.0m);
saving.Withdraw(30.0m);
// Savings balance should now be 988.63
Console.WriteLine($"Savings balance is {saving.Balance:C2}");
// try to overdraw savings - this should be denied and print message
saving.Withdraw(2000.0m);
// try to overdraw checking - should result in extra charge
checking.Withdraw(3000.0m);
// Expected output should be -385 and 988.63
Console.WriteLine($"Checking balance is {checking.Balance:C2}");
Console.WriteLine($"Savings balance is {saving.Balance:C2}");
}
}
}