Mô tả bài toán
Tạo ứng dụng Console, mô phỏng việc thực hiện giao dịch của một máy ATM, với các tính năng:
- Kiểm tra tài khoản (Balance checking)
- Rút tiền mặt (Cash withdrawal), với các ràng buộc:
- Số tiền cần rút phải là bội số của 100$.
- Số tiền còn tối thiểu trong tài khoản phải > 500$.
- Gởi tiền mặt (Cash deposition)
Chương trình cần hiển thị dạng Menu để người dùng lựa chọn tính năng theo nhu cầu của người dùng.
Cách giải quyết
- Cần khởi tạo biến
amount để lữu trữ số tiền hiện đang có trong tài khoản của người dùng.
- Để tạo Menu dạng Console, chúng ta cần tạo danh sách các chức năng tương ứng với hành động của người dùng nhập vào. Thông thường, chúng ta sẽ lặp lại Menu liên tục, cho đến khi người dùng không sử dụng chương trình nữa:
- Nếu chọn
1 : sẽ đi đến chức năng "Kiểm tra tài khoản".
- In ra màn hình giá trị của biến
amount đang có.
- Nếu chọn
2 : sẽ đi đến chức năng "Rút tiền".
- Cho người dùng nhập số tiền cần rút, lưu giá trị vào biến
withdraw
- Các điều kiện ràng buộc:
- Số tiền cần rút phải là bội số của 100$.
- Số tiền còn tối thiểu trong tài khoản phải > 500$.
- Nếu thỏa các điều kiện: lấy
amount - withdraw
- Nếu chọn
3 : sẽ đi đến chức năng "Gởi tiền".
- Cho người dùng nhập số tiền cần gởi lưu giá trị vào biến
deposit
- Lấy
amount = amount + deposit
- Nếu chọn
4 : sẽ thoát vòng lặp, kết thúc chương trình.
Source code
/*
C# Program to Display the ATM Transaction
This is a C# Program to display the atm transaction.
Problem Description
This C# Program Displays the ATM Transaction.
Problem Solution
Here The types of ATM transaction are
1) Balance checking
2) Cash withdrawal
3) Cash deposition.
You can opt any of the above transaction according to your need of transaction.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lession10
{
class Program
{
static void Main(string[] args)
{
int amount = 1000, deposit, withdraw;
int choice, pin = 0;
bool continueAsk = true;
Console.WriteLine("Enter Your Pin Number ");
pin = int.Parse(Console.ReadLine());
while (continueAsk)
{
Console.WriteLine("********Welcome to ATM Service**************");
Console.WriteLine("1. Check Balance");
Console.WriteLine("2. Withdraw Cash");
Console.WriteLine("3. Deposit Cash");
Console.WriteLine("4. Quit");
Console.WriteLine("*********************************************");
Console.WriteLine("Enter your choice: ");
choice = int.Parse(Console.ReadLine());
switch (choice)
{
case 1:
Console.WriteLine(" YOUR BALANCE IN Rs : {0} ", amount);
break;
case 2:
Console.WriteLine(" ENTER THE AMOUNT TO WITHDRAW: ");
withdraw = int.Parse(Console.ReadLine());
if (withdraw % 100 != 0)
{
Console.WriteLine(" PLEASE ENTER THE AMOUNT IN MULTIPLES OF 100");
}
else if (withdraw > (amount - 500))
{
Console.WriteLine(" INSUFFICENT BALANCE");
}
else
{
amount = amount - withdraw;
Console.WriteLine(" PLEASE COLLECT CASH");
Console.WriteLine(" YOUR CURRENT BALANCE IS {0}", amount);
}
break;
case 3:
Console.WriteLine(" ENTER THE AMOUNT TO DEPOSIT");
deposit = int.Parse(Console.ReadLine());
amount = amount + deposit;
Console.WriteLine("YOUR BALANCE IS {0}", amount);
break;
case 4:
Console.WriteLine(" THANK U USING ATM");
continueAsk = false;
break;
}
}
Console.WriteLine(" THANKS FOR USING OUT ATM SERVICE");
Console.Read();
}
}
}
Github
https://github.com/kellyfire611/learning.nentang.vn-csharp/blob/master/src/Lession10/Program.cs
|