Questions tagged [bank]
169 questions
-1
votes
2 answers
C# Bank Account Deposit
Hi guys I have this bank account project which displays account info when user selected index. This information includes the current balance that the account has. And then I also has deposit simulation which the amount I deposit should add up to the…

tapsilog
- 13
- 1
- 5
-1
votes
1 answer
deposit() function of this checking account C program
I am writing a program in C to simulate a checking account. There are codes for transactions, I = Initial Balance, D = Deposit, and C = Check(you write a check to someone, like a withdrawal). There is a monthly fee of $3.00 to maintain the account,…

Futbolero
- 11
- 1
- 2
-1
votes
2 answers
Printing balance, What m i doing wrong?
I want to maintain 100 Balance at all cost.
Please tell me what m i doing wrong?
static void withdraw(float cash){
if (balance>100)
balance=balance-cash;
System.out.println(balance);
else
(balance<=100){
…

rahyyl
- 23
- 3
-2
votes
1 answer
Retrieve bank account number through plaid in Django
I am creating a financial app using django. I want a user can connect to any bank using Plaid and on the UI, we can see the bank account number and balance of the user. I am not sure how to retrieve the dummy bank account number
I tried to connect…

Sapy
- 1
- 1
-2
votes
1 answer
C# bank system SortedSet
I tried to make a bank system that save the accounts in a sorted set by there balance (on desnding order).
when i printing the accounts its (using the for each in the main) dose not print in desanding order, its printing in inseration oreder (a1 a2…

Adam Hafchadi
- 9
- 3
-2
votes
1 answer
how do i add a code that tells the customer to enter a valid amount if he enter symbols or unvalid number or character of the deposite or withdraw
#class of bank account with withdraw and deposite
how do i add a code that tells the customer to enter a valid amount if he enter symbols or unvalid number or character of the deposite or withdraw
enter code here
def __init__(self):
…

Eh4413
- 1
-2
votes
1 answer
ATM Account Homework (Classes, Textfiles, Objects)
I am completely lost. Our homework assignment is to:
Create an ATM Program that asks a user for their name and pin
Program will loop through asking user if they want to check balance, withdraw, deposit, or exit. You exit the loop when user selects…

Penelope Tharon
- 1
- 1
- 4
-2
votes
2 answers
Transfer method in bank class for python
So, I'm making a Bank class in python. It has the basic functions of deposit, withdrawing, and checking your balance. I'm having trouble with a transfer method though.
This is my code for the class.
def __init__(self, customerID):
self.ID =…

FuzzyMuffin
- 15
- 1
- 1
-2
votes
3 answers
Bank Account Program Logic Error
I create a very basic bank account program for homework and I keep getting a logic error. Instead of the program giving the total balance after the depositing, withdrawing, and adding interest it just outputs the amount deposited - withdrawn.I…

DavidGilly
- 47
- 8
-2
votes
1 answer
Using a pointer in another function - Bank Program
I have a quick question about this code that I am writing. Referring to void RunBankMenu(int *choice) and void TransactionDecision(...), how would I use the value acquired from RunBankMenu(Choice) to set a if/else or switch statement for…

TheJr
- 51
- 7
-2
votes
1 answer
Bank Java Program
I've caught the dumb and can't figure out why my code is getting stuck at findAccount(). I can create accounts, but when I go to do something with that account, it can't be "found," and I can't figure out why for the life of me. I've looked at…

Angela Schneider
- 11
- 1
- 6
-2
votes
1 answer
Array bank system: issue with transferring a value
I'm in a beginner's Java class. I am trying to implement a method that transfers a value to another account. I can't figure out how to do this. As of yet, my code is as follows:
Conta.java:
package br.com.banco;
class Conta {
private int…

fellipe rocha
- 11
- 3
-2
votes
2 answers
Banking ATM program
I wrote a simple program for a banking ATM. The program is working properly, just I don't know how to update the new balance after I made a withdraw or deposit. Because in the menu function, i always set the self._balance back after inputting a pin…

Kunlin
- 33
- 4
- 9
-3
votes
1 answer
Bank Account number verification using java
I am trying to write a java program that verifies the validity of a bank account number in Algeria, and I was checking the web for formula, and I found a piece of javascript (that I could not understand).
Here is the code:
function…

Ism Blk
- 3
- 2
-3
votes
1 answer
I have to create a basic Bank Menu and I've been having a hard time wrapping my head around it
I'm trying to figure out where to go from here, I know I have to have an accumulator somewhere in there to show the current balance of the the user. I'm not quite sure how to implement it, as well as keeping it persistent when the user wants to do…

Nitsuga Arashi
- 47
- 1
- 8