https://github.com/vbukoev/basicconsoleatmproject
In this C# program, we are going to make a simple ATM based program with basic operations like check balance, withdraw money, deposit money, change PIN number etc.
https://github.com/vbukoev/basicconsoleatmproject
Last synced: 9 months ago
JSON representation
In this C# program, we are going to make a simple ATM based program with basic operations like check balance, withdraw money, deposit money, change PIN number etc.
- Host: GitHub
- URL: https://github.com/vbukoev/basicconsoleatmproject
- Owner: vbukoev
- License: mit
- Created: 2022-09-05T15:52:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T15:32:40.000Z (almost 4 years ago)
- Last Synced: 2025-07-30T05:55:43.029Z (11 months ago)
- Language: C#
- Homepage:
- Size: 124 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BasicATMProject
In this solution, we will learn how an ATM functions. Just like our daily operations we are implementing the same features in this program, like: deposit cash, withdraw money, check balance.
Firstly, a predefined PIN is initialized in this program(in our "database" which is a list with names, card numbers, and PINS), so that it can be matched with the given (input) PIN number. And then we select the operations given in the program. Based on the selected operation program will work.