Bank Operations Using C#
Bank Operations Using C#
using System.Collections.Generic;
using System.Linq;
using System.Text;
class BankAccount
{
public string name;
int accountNum;
public double balance = 0;
double interest = 0;
public BankAccount(string namae, double firstDep)
{
name = namae;
balance += firstDep;
}