Created
March 31, 2017 15:59
-
-
Save bigworld12/0518907d35828cb704db3308ef85f93e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
BankAccount ba = new BankAccount(); | |
ba.deposit(50); | |
ba.withdraw(13); | |
ba.display(); | |
Console.ReadKey(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment