Thursday, August 2, 2007

code: ATM Machine

This is a very simple code that i wrote. It's just an ATM machine and it's very simple... it uses some "if then" and "switch" statements and it's a good practice for a beginner coder.

If you have any question and/or comments please let me know because I'm fairly new to Java myself so any hints and tricks are welcome :)


/**
* Author: http://javacodee.blogspot.com/
* Date: Aug 1, 2007
* Time: 11:30:18 PM
*/
import java.util.Scanner;

public class AtmMachine
{
private double availableBal =80;
private double totalBal =100;
Scanner input = new Scanner(System.in);

public int userAccount()
{
System.out.print("Enter your account number: ");
int account;
account = input.nextInt();

return account;
}

public int userPin()
{
System.out.print("Enter your pin number: ");
int pin;
pin =input.nextInt();

return pin;
}

public void startAtm()
{
userAccount();
userPin();
drawMainMenu();
}

public void drawMainMenu()
{
int selection;

System.out.println("\nATM main menu:");
System.out.println("1 - View account balance");
System.out.println("2 - Withdraw funds");
System.out.println("3 - Add funds");
System.out.println("4 - Terminate transaction");
System.out.print("Choice: ");
selection =input.nextInt();

switch(selection)
{
case 1:
viewAccountInfo();
break;
case 2:
withdraw();
break;
case 3:
addFunds();
break;
case 4:
System.out.println("Thank you for using this ATM!!! goodbye");
}
}

public void viewAccountInfo()
{
System.out.println("Account Information:");
System.out.println("\t--Total balance: $"+totalBal);
System.out.println("\t--Available balance: $"+availableBal);
drawMainMenu();
}

public void deposit(int depAmount)
{
System.out.println("\n***Please insert your money now...***");
totalBal =totalBal +depAmount;
availableBal =availableBal +depAmount;
}

public void checkNsf(int withdrawAmount)
{
if(totalBal -withdrawAmount < 0)
System.out.println("\n***ERROR!!! Insufficient funds in you accout***");
else
{
totalBal =totalBal -withdrawAmount;
availableBal =availableBal -withdrawAmount;
System.out.println("\n***Please take your money now...***");
}
}

public void addFunds()
{
int addSelection;

System.out.println("Deposit funds:");
System.out.println("1 - $20");
System.out.println("2 - $40");
System.out.println("3 - $60");
System.out.println("4 - $100");
System.out.println("5 - Back to main menu");
System.out.print("Choice: ");
addSelection =input.nextInt();

switch(addSelection)
{
case 1:
deposit(20);
drawMainMenu();
break;
case 2:
deposit(40);
drawMainMenu();
break;
case 3:
deposit(60);
drawMainMenu();
break;
case 4:
deposit(100);
drawMainMenu();
break;
case 5:
drawMainMenu();
break;
}
}

public void withdraw()
{
int withdrawSelection;

System.out.println("Withdraw money:");
System.out.println("1 - $20");
System.out.println("2 - $40");
System.out.println("3 - $60");
System.out.println("4 - $100");
System.out.println("5 - Back to main menu");
System.out.print("Choice: ");
withdrawSelection =input.nextInt();

switch(withdrawSelection)
{
case 1:
checkNsf(20);
drawMainMenu();
break;
case 2:
checkNsf(40);
drawMainMenu();
break;
case 3:
checkNsf(60);
drawMainMenu();
break;
case 4:
checkNsf(100);
drawMainMenu();
break;
case 5:
drawMainMenu();
break;
}
}

public static void main(String args[])
{
AtmMachine myAtm = new AtmMachine();
myAtm.startAtm();
}
}

58 comments:

Unknown said...

how the code, if the number pin has been registered for exp: 12345,

- how if user input the wrong pin, then the atm said : Incorrect Number, please input the correct number or press 0 to exit

- when user input the correct number, all code that you write above will working.

I am sorry, i am very new to this java, i have a bad english

sidik_l27@yahoo.com
msidikp.wordpress.com

Unknown said...

thank you very much if you want to share your knowledge...

i apreciate it..

Unknown said...

hey,
can u post a java program on the following question:-

WAP to enter a numeric value and print its value for
a. Absolute value of a number
b. Square root of a number
c. Cube root of a number

Unknown said...

waitin 4 a reply.,...

Ammoon said...

thank u very much for this code ...
i wanna to ask u a bout somthing how can i read data from a file ?
as u know that all the user have their password and account in a file and the ATM will read this and compare !
how i can add it to this code?

regards;
Eman

Unknown said...

Hi there.
I'm Rolljin Malicdem from Philippines.
I'm a First Year IT student.
I have a problem regarding on how to create an ATM Machine using JAVA.
I wish you could help me on my case study about on how to create a ATM Machine using JAVA.
My e-mail address is malicdemrolljin@yahoo.com.
We need your help as soon as possible.
Thank a lot and I hope that you could give me some tips on how to defense your JAVA code.
Thanks a lot and GODBLESS...

luci-lg said...

Hello..
I'm new to java language and I wanna asking you about this coding, when I was compile file, description cannot resolve symbol class Scanner in 1. import java.util.Scanner; 2. Scanner input = new Scanner(System.in);

What's the problem?? Can you explain to me..??

Waiting your reply, plz..
Luci_lg@yahoo.com

nikita said...

is dis code will work as online ATM system

nikita said...

i need an ATM code that works not only on standalone PC but also as online system. my e-mail id is nikita18katyal@gmail.com

Unknown said...

Hi,
My name is Senami, I'm from Nigeria. Please, I would like you to build a biometric ATM with Java program.

My email address is donamie2006@yahoo.com

Thank you.

Unknown said...

hi,
did you finish your project . build a biometric ATM with Java program.
thanks
rasha2211@yahoo.com

nickty said...

Thanks for sharing this valuable code.

kabaka said...

men am tyrone 1 year experience programmer thank you for doing this men tell how can i put my atm machine to run on line with in bank pliz my contact is kamyabowl@yahoo.com

ahnnie reine said...

hey,have a nice day....how can this code will be in a windows form of data type...

ahnnie reine said...

hey...have a nice day...can u have a ATM code in java in a windows data type...?

Herbalife Nutrition for a Better LIFE said...

this blog really help!tqvm

bharath said...

hw to use a bufferedreader claz in dis??,can u frame dis using buffered reader claz??

javed usmani said...

i want pen drive no. as a ATM card no.(when i plug in my pen Drive in to the leaptop then it treat like a ATM Card) in to my ATM Machine java project.................so anybody have a idea about it.
please send me meterial ragarding this (ATM Project)on my mail Id"-javedusmani2@gmail.com.

raghuram said...

really great !
thamk you for your information(program)......

ALEXis01 said...

Hi there.
I'm ALEXIS ESQUEJ from Philippines.
I'm a First Year IT student.
I have a problem regarding on how to create an ATM Machine using JAVA.
I wish you could help me on my case study about on how to create a ATM Machine using JAVA.
My e-mail address is chozen_esquejo@yahoo.com.
We need your help as soon as possible.
Thank a lot and I hope that you could give me some tips on how to defense your JAVA code.
Thanks a lot and GODBLESS...


PLEASE !!! HELP ME :)

ALEXis01 said...
This comment has been removed by the author.
i m said...
This comment has been removed by the author.
i m said...

m jst new in machine programming coding language ... ...

i just wantd 2 knw is der any other easy language 4 machine programming coding is yes den which language is dat .?.!. ... ...


i wil b glad if u reply heyitsm10@gmail.com


thank you ... ...

shanmuka said...

Thank u for your help..i am very glad to you

shanmuka said...

Thank u for your help..i am very glad to you

Janine Villarino said...

i am hoping that you could help me.. i want a code for changing pin.. i dont what to do..

Anonymous said...

nice program for beginners....easy to understand :)

sandi mubha said...

thank so much and helped...
http://sandi-mubha.blogspot.com/

Pakcik said...

import java.awt.*;
import java.util.Scanner;
import java.text.DecimalFormat;

/** Account */
class Account {
// declaration
private static int id;
private static double balance;

/** Constructor */
public Account() {
// constructor
this.id = 0;
this.balance = 0.00;
}

/** Withdraw */
public static double withdraw(double balance, double withdraw) {
// withdraw
DecimalFormat decf = new DecimalFormat("0.00");

if (withdraw > balance) {
System.out.println("Insufficient fund");
Toolkit.getDefaultToolkit().beep();
}
else {
balance -= withdraw;
System.out.println("The balance is RM " + decf.format(balance) );
}

return balance;
}

/** Deposit */
public static double deposit(double balance, double deposit) {
// deposit
DecimalFormat decf = new DecimalFormat("0.00");

balance += deposit;
System.out.println("The balance is RM " + decf.format(balance) );

return balance;
}

/** MainMenu */
public static void mainMenu() {
// mainmenu
System.out.println("");
System.out.println("Main menu");
System.out.println("1 : Check balance");
System.out.println("2 : Withdraw");
System.out.println("3 : Deposit");
System.out.println("4 : Exit");
System.out.println("");
}

/** CheckID */
public static boolean checkID(int id, int[] userID) {
// check id
for (int x = 0; x < userID.length; x++)
{
if (id == userID[x]) {
return true;
}
}
return false;
}

/** Main */
public static void main(String[] args) {
// main
Scanner inp = new Scanner(System.in);
DecimalFormat decf = new DecimalFormat("0.00");

int choice;
int[] userID = {0,1,2,3,4,5,6,7,8,9};
double[] iBalance = {100,100,100,100,100,100,100,100,100};

System.out.print("Enter an id: ");
id = inp.nextInt();

boolean boolID = checkID(id,userID);

while (boolID == false)
{
System.out.print("Enter an id: ");
id = inp.nextInt();
boolID = checkID(id,userID);
}

while (1 > 0) { // this statement will always true...

if (boolID == false) {
while (boolID == false)
{
System.out.println("");
System.out.print("Enter an id: ");
id = inp.nextInt();
boolID = checkID(id,userID);
}

}

// before looping again...
balance = iBalance[id];

choice = 0;
while (choice != 4) {

mainMenu();

System.out.print("Enter a choice : ");
choice = inp.nextInt();

switch(choice) {
case 1 :
// check balance
System.out.println("The balance is RM " + decf.format(balance));
balance = iBalance[id];
break;
case 2 :
// withdraw
System.out.print("Enter an amount to withdraw : ");
double amtWithdraw = inp.nextDouble();
iBalance[id] = withdraw(balance, amtWithdraw);
balance = iBalance[id];
break;
case 3 :
// deposit
System.out.print("Enter an amount to deposit : ");
double amtDeposit = inp.nextDouble();
iBalance[id] = deposit(balance, amtDeposit);
balance = iBalance[id];
break;
case 4 :
boolID = false;
break;
} // switch

} // while looping (choice)

} // while looping (infinite loop)

} // main

} // class

Unknown said...

Hi how to create this code in JFrame?
Please email me zimorodek84@gmail.com

raj'scrickinfo said...

hai i'm rajasekhar i'm new to java send me the some of the java blogs which contains real time examples in the blog to: rajsekhar.568@gmail.com

Anonymous said...

Our instructor in our class required us to make a java ATM Program. It is a major problem on me since my knowledge in java is very limited. I've searched in google and VOILA! I found this site. Thank you very much! Muchos Gracias, Amigo! :)

Anonymous said...

This was a great help! Muchos Gracias,amigo! :)

Unknown said...

hi.. i really need a help for this ATM machine code.. it's out project in our java class and i'm getting confused on it.. here's my email.. pumbaya12@yahoo.com and i really want to know what's the use of some codes there.. please.. i'm bad on understanding a book...

Unknown said...

can u please send me some xamples of real tym coz i hv just studied java core nd its quite difficult for me to code for atm machine
id prachisahai20@gmail.com

harry said...

NEED A HACKED ATM CARD WITH PIN?
We sell physical loaded ATM cards . It is a strong card that can be used to withdraw Cash in any of the ATM Machine. This Cards comes in Visa/Master Cards. Therefore it works at any ATM Machine Visa/master Card all over the globe world.
CAN I USE THIS READY MADE ATM CARD TO BUY STUFF IN STORES? OR ONLINE SHOPPING? PAY BILLS? Yes, with this physical blank ATM card, you can use it to pay stuff at stores through POS. With this ATM card information, you can use it online to pay bills or do online shopping. When you order for this card, Full information about the card will be given to you. We also reload your card when funds is exhausted.
DO I NEED TO ORDER NEW CARD EVERY TIME WHEN THE FUNDS HAS FINISHED? No, if you have already ordered our card, there is no need to keep ordering new cards, Just contact us for a reload. We shall easily reload the ATM card already in your possession. contact us on}} harrytechworld@gmail.com//whatsapp...+2348032460627

Unknown said...



BEST WAY TO HAVE GOOD AMOUNT TO START A GOOD BUSINESS or TO START LIVING A GOOD LIFE..... Hack and take money directly from any ATM Machine Vault with the use of ATM Programmed Card which runs in automatic mode. email (williamshackers@hotmail.com) for how to get it and its cost . .......... EXPLANATION OF HOW THESE CARD WORKS.......... You just slot in these card into any ATM Machine and it will automatically bring up a MENU of 1st VAULT $10,000, 2nd VAULT $20,000, RE-PROGRAMMED, EXIT, CANCEL. Just click on either of the VAULTS, and it will take you to another SUB-MENU of ALL, OTHERS, EXIT, CANCEL. Just click on others and type in the amount you wish to withdraw from the ATM and you have it cashed instantly... Done. ***NOTE: DON'T EVER MAKE THE MISTAKE OF CLICKING THE "ALL" OPTION. BECAUSE IT WILL TAKE OUT ALL THE AMOUNT OF THE SELECTED VAULT. email(williamshackers@hotmail.com). We are located in USA.

Flora shawn said...

If you are in need of financial Help, don't hesitate to place order for deserve Programmed card that can withdraw any amount limit you want. Deserve Card are very transparent and easy to deal with. You can Purchase Deserve card that can withdraw up to $50,000 to $100,000 limit without being detected because of the programming of the card. I'm extremely grateful to them for being honest with their words and delivering the card to me. This is the third day of receiving the card and i have withdraw $9,500 from the Deserve Programmed Card. I tried purchasing the card previously from someone else, but it never arrived until i tried skylink technology for those in need of more money, you can also contact them. you can place order for the card Via whatsapp +1(213)328–0248 or their E-mail: skylinktechnes@yahoo.com

PAIGE said...

definitely if you're getting a trusted ethical hacker to help you with hack or clone of your spouse phones or even their social media accounts, like messenger, whatsapp instagram, and mails, etc. especially for spouses in distant relationship I will recommend you to this hacker with the email address, superior.hack WITH . he has helped me on several hack jobs since my friend introduced him to me, he's been so spectacular. for obvious reasons, I would not want to go into details on how he's helped me hack my spouses social media accounts and even my friends when they gossip.
for relative hack jobs ranging from
accounts hack
CREDIT SCORE INCREASE
CREDIT REPORT FIX
EMAIL ACCOUNTS HACK
WHATSAPP AND OTHER SOCIAL MEDIA HACK
UNLOCK OF PHONES OF DATE / LATE RELATIVES
and some other relative hack job, just hit him up
SUPERIOR.HACK@GMAIL.COM OR TEXT/CALL(+16692252253), thumbs up for a job well done, that's my review

Donald LIsa said...

I want to shear a life changing story with everyone who cares to read this testimony. Blank atm cards are real and are effective all over the world. my name is Gorge Judy i live in SPAIN . I got this card from [skylink technology] a month ago. this card has really help me pay my debts and now i am free from all financial problems. I no this is hard to believe , but i never knew there was this kind of card until i got one. This card withdraw more than €6000 daily and it is very easy to use. But you have to be very careful in other not to be caught by the police because it is illegal. If you want more information on this card and how to get one just contact the hackers by this address
skylinktechnes@yahoo.com or whatsapp +1(213)328–0248

Fixit said...

Hello all
am looking few years that some guys comes into the market
they called themselves hacker, carder or spammer they rip the
peoples with different ways and it’s a badly impact to real hacker
now situation is that peoples doesn’t believe that real hackers and carder scammer exists.
Anyone want to make deal with me any type am available but first
I‘ll show the proof that am real then make a deal like

Available Services

..Wire Bank Transfer all over the world

..Western Union Transfer all over the world

..Credit Cards (USA, UK, AUS, CAN, NZ)

..School Grade upgrade / remove Records

..Spamming Tool

..keyloggers / rats

..Social Media recovery

.. Teaching Hacking / spamming / carding (1/2 hours course)

discount for re-seller

Contact: 24/7

fixitrogers@gmail.com

Gary said...



I'm here to testify about Mr John Blank ATM Cards which can withdraw money from any ATM machines around the world.. firstly I thought it was scam until I saw so many testimony about how Mr John sent them the ATM blank card and how it was used to withdraw money in any ATM machine and become rich so I decided to risk the opportunity I contacted him also and I applied for the Blank Card to my greatest surprise I have used it to get 10,000 dollars. maximum withdrawal daily $1,000, Mr John is giving out the card just to help the poor. Hack and take money directly from any ATM Machine Vault,If your interested kindly contact him directly on his email (johnlopez1945@gmail.com)

Atm Card said...

Get A Blank ATM CARD And Cash Good Money/Funds Pay Your Debt directly today in any ATM machine around you anywhere in the world. It's 100% guaranteed secure with no worries of being caught because the blank card it's already programmed and loaded with good funds in it, in such a way that's not traceable which also have a technique that makes it impossible for the CCTV to detect you, i am not a stupid man that i will come out to the public and start saying what someone have not done. For more info contact Mr john and also on how you are going to get your Card, Order yours today via Email: cryptoatmhacker@gmail.com

WhatsApp contact: +27733798090

Atm Card said...

Get A Blank ATM CARD And Cash Good Money/Funds Pay Your Debt directly today in any ATM machine around you anywhere in the world. contact cryptoatmhacker@gmail.com.. It's 100% guaranteed secure with no worries of being caught because the blank card it's already programmed and loaded with good funds in it, in such a way that's not traceable which also have a technique that makes it impossible for the CCTV to detect you, i am not a stupid man that i will come out to the public and start saying what someone have not done. For more info contact Mr john and also on how you are going to get your Card, Order yours today via Email: cryptoatmhacker@gmail.com

Atm Card said...

Get A Blank ATM CARD And Cash Good Money/Funds Pay Your Debt directly today in any ATM machine around you anywhere in the world. contact cryptoatmhacker@gmail.com.. It's 100% guaranteed secure with no worries of being caught because the blank card it's already programmed and loaded with good funds in it, in such a way that's not traceable which also have a technique that makes it impossible for the CCTV to detect you, i am not a stupid man that i will come out to the public and start saying what someone have not done. For more info contact Mr john and also on how you are going to get your Card, Order yours today via Email: cryptoatmhacker@gmail.com

Atm Card said...

Get A Blank ATM CARD And Cash Good Money/Funds Pay Your Debt directly today in any ATM machine around you anywhere in the world. contact cryptoatmhacker@gmail.com.. It's 100% guaranteed secure with no worries of being caught because the blank card it's already programmed and loaded with good funds in it, in such a way that's not traceable which also have a technique that makes it impossible for the CCTV to detect you, i am not a stupid man that i will come out to the public and start saying what someone have not done. For more info contact Mr john and also on how you are going to get your Card, Order yours today via Email: cryptoatmhacker@gmail.com

noel loren said...

INSTEAD OF GETTING A LOAN, CHECK OUT THE BLANK ATM CARD IN LESS THAN 24hours {oscarwhitehackersworld@gmail.com}


I want to testify about OSCAR WHITE blank ATM cards which can withdraw money from any ATM machines around the world. I was very poor before and have no hope then I saw so many testimony about how OSCAR WHITE send them the blank ATM card and i use it to collect money in any ATM machine and become rich. I also email him and he sent me the blank card. I have use it to get $100,000 dollars. withdraw the maximum of $5,000 daily.OSCAR WHITE is giving out the card just to help the poor. Hack and take money directly from any ATM Machine Vault with the use of ATM Programmed Card which runs in automatic mode. email Him on how to get it now via: oscarwhitehackersworld@gmail.com or whats-app +1(323)-362-2310

jeffrey cage said...


Cool way to have financial freedom!!! Are you tired of living a poor life, here is the opportunity you have been waiting for. Get the new ATM BLANK CARD that can hack any ATM MACHINE and withdraw money from any account. You do not require anybody’s account number before you can use it. Although you and I knows that its illegal,there is no risk using it. It has SPECIAL FEATURES, that makes the machine unable to detect this very card,and its transaction can’t be traced .You can use it anywhere in the world. With this card,you can withdraw nothing less than $4,500 a day. So to get the card,reach the hackers via email address : besthackersworld58@gmail.com or whatsapp him on +1(323)-723-2568

albert said...


I've been seeing posts and testimonials about BLANK ATM CARD but I never believed it, not until I tried it myself. It was on the 12th day of March. I was reading a post about places to visit in Slovakia when I saw this captivating post about how a Man described as Mr Harry changed his life with the help of a Blank Atm Card. I didn't believe it at first until I decided to reach him through the mail address attached to the post. To my greatest imagination, it was real. Right now am living up to a standard I never used to live before. Today might be your lucky day! Reach Mr Harry via email: (harrybrownn59@gmail.com) see you on the brighter side of life. you can also text him on his number:+16617970921

rebbecahanna said...

I'm here to testify about Mr Michael Blank ATM Cards which can withdraw money from any ATM machines around the world.. firstly I thought it was scam until I saw so many testimony about how Mr Michael sent them the ATM blank card and how it was used to withdraw money in any ATM machine and become rich so I decided to risk the opportunity I contacted him also and I applied for the Blank Card to my greatest surprise I have used it to get 10,000 dollars. maximum withdrawal daily $1,000, Mr Michael is giving out the card just to help the poor. Hack and take money directly from any ATM Machine Vault,If your interested kindly contact him directly on his email (mrmichaelsonhackingatm@gmail.com@gmail.com)

John said...

I was searching for loan to sort out my bills& debts, then i saw comments about Blank ATM Credit Card that can be hacked to withdraw money from any ATM machines around you . I doubted thus but decided to give it a try by contacting (officialhackingcompany@gmail.com} they responded with their guidelines on how the card works. I was assured that the card can withdraw $5,000 instant per day & was credited with$50,000,000.00 so i requested for one & paid the delivery fee to obtain the card, after 24 hours later, i was shock to see the UPS agent in my resident with a parcel{card} i signed and went back inside and confirmed the card work's after the agent left. This is no doubts because i have the card & has made used of the card. This hackers are USA based hackers set out to help people with financial freedom!! Contact these email if you wants to get rich

Email: officialhackingcompany@gmail.com
website:https://official-hacking-company.jimdosite.com/

cecilia adams said...

I got my programmed and blank ATM card from william scot hackers to withdraw the amount of US $ 3,000 per day for a maximum of 30 days at (williamscothackers@gmail.com).
Though at first i was in doubt, but thank God i did not back-out I am very happy with this because i have successfully paid my debt. William Scot Hackers is true and real, Get yours from William Scot Hackers today! You just have to send an email.
to (williamscothackers@gmail.com)
whatsapp no: 12012750184

Elena said...



Hi, My name is Elena Alex, I live in Washington and I just want to share
my experience with everyone. I have been hearing about this blank ATM card
for a while and I never really paid any interest to it because of my
doubts. Until one day I discovered a hacking guy called Dickson Harry. He
is really good at what he is doing. Back to the point, I inquired about The
Blank ATM Card. If it works or even Exist. Then he told me Yes and that
it's a card programmed for random money withdrawals without being noticed
and can also be used for free online purchases of any kind. This was
shocking and I still had my doubts. Then I gave it a try and asked for the
card and agreed to their terms and conditions. Hoping and praying it was
not a scam. One week later I received my card and tried with the closest
ATM machine close to me, It worked like magic. I was able to withdraw up to
$2,500 every day. This was unbelievable and the happiest day of my life. So
far I have been able to withdraw up to $75000 without any stress of being
caught. I don’t know why i am posting this here, i just felt this might
help those of us in need of financial stability. a blank ATM has really
changed my life. If you want to contact them, Here is the email address
(dicksonharryblankatmharckers@gmail.com)And I believe he will also Change
your Life.

Atm Card said...

CONGRATULATIONS ?? to everyone who benefited from my company link I shared yesterday!
Registration fee:$0:00
Daily earning :$500
Weeky earning $15,000
Monthly:$50,000
Interested persons contact us to get started?
No referral needed?
No hidden fees?
No scam?
Above $1000 assured daily earning??
First 40 person Join the telegram group channel and see the amazing testimonies of people regarding this platform
Hurry now and invest with this legit platform????
Click on the link to join telegram now
??????????????
Binary investment trade ???
https://t.me/joinchat/UbYd2DJQo4Ri3x7R

Unknown said...

DO YOU NEED A PERSONAL/BUSINESS/INVESTMENT LOAN? CONTACT US TODAY VIA WhatsApp +19292227023 Email drbenjaminfinance@gmail.com

We have provided over $1 Billion in business loans to over 15,000 business owners just like you. We use our own designated risk technology to provide you with the right business loan so you can grow your business. Our services are fast and reliable, loans are approved within 24 hours of successful application. We offer loans from a minimum range of $5,000 to a maximum of $500 million.

Do you find yourself in a bit of trouble with unpaid bills and don’t know which way to go or where to turn? What about finding a reputable Debt Consolidation firm that can assist you in reducing monthly installment so that you will have affordable repayment options as well as room to breathe when it comes to the end of the month and bills need to get paid? Dr. Benjamin Owen ®Capital Managements Inc™ is the answer. Reduce your payments to ease the strain on your monthly expenses. Email (drbenjaminfinance@gmail.com)

DO YOU NEED 100% FINANCE? we give out loans with an affordable interest rate of 2%
®Capital Managements Inc™ (drbenjaminfinance@gmail.com) aims is to provide Excellent Professional Financial Services.

Our services include the following:

*Truck Loans
* Personal Loans
* Debt consolidation loans
* Car Loans
* Business Loans
* Education Loans
* Mortgage
*Refinancing Loans
* Home Loans

We give you loan with a low interest rate of 2% and loan duration of 1 to 30 years to pay back the loan (secure and unsecured). Do not keep your financial problems to yourself in order for you not to be debt master or financial stress up, which is why you must contact us quickly for a solution to your financial problems. It will be a great joy to us when you are financially stable. Email (drbenjaminfinance@gmail.com)

NOTE: Bear in mind that it will only take less than 24 Hours to process your file is 100% Guaranteed no matter your Credit Score.

Yours Sincerely,
Dr. Benjamin Finance
Email: drbenjaminfinance@gmail.com
WhatsApp: +19292227023
Call/Text : +1(646)820-1981
We are certified and your privacy is 100% safe with us. Worry no more about your loans or finances.


Get your instant loan approval

Adams josh said...

I am sure a lot of us are still unaware of the recent development of the Blank ATM card.. An ATM card that can change your financial status within a few days. With this Blank ATM card, you can withdraw between $1,000-$5,000 daily from any ATM machine in the world. There is no risk of getting caught by any form of security if you followed the instructions properly. The Blank ATM card is also sophisticated due to the fact that the card has its own security making your transaction very safe and untraceable. For more info contact Mr Calvin Grayson via email: officialblankatmservice@gmail.com or whatsApp +447937001817

DANA JERRY said...

I was searching for loan to sort out my bills& debts, then i saw comments about Blank ATM Credit Card that can be hacked to withdraw money from any ATM machines around you . I doubted thus but decided to give it a try by contacting {Blankatmoffice@gmail.com} they responded with their guidelines on how the card works. I was assured that the card can withdraw $5,000 instant per day & was credited with $50,000.00 so i requested for one & paid the delivery fee to obtain the card, after 24 hours later, i was shock to see the UPS agent in my resident with a parcel{card} i signed and went back inside and confirmed the card work's after the agent left. This is no doubts because i have the card & has made used of the card. This hackers are USA based hackers set out to help people with financial freedom!! Contact these email if you wants to get rich with this Via: Blankatmoffice@gmail.com...
WESTERN UNION HACK/ MONEY GRAM HACK 2) BITCOIN INVESTMENTS HACK 3) BANKS TRANSFERS 4) CRYPTOCURRENCY MINING 5) BANKS LOGINS 6) LOADING OF ACCOUNTS 7) WALMART TRANSFERS 8) BUYING OF GIFT CARDS 9) REMOVING OF NAME FROM DEBIT RECORD AND CRIMINAL RECORD 10) BANK HACKING 11) PAYPAL LOADING 12) CASH-APP FLIP •

Unknown said...

Do you need an urgent loan of any kind? Loans to liquidate debts or need to loan to improve your business have you been rejected by any other banks and financial institutions? Do you need a loan or a mortgage? This is the place to look, we are here to solve all your financial problems. We borrow money for the public. Need financial help with a bad credit in need of money. To pay for a commercial investment at a reasonable rate of 3%, let me use this method to inform you that we are providing reliable and helpful assistance and we will be ready to lend you. Contact us today by email: daveloganloanfirm@gmail.com Call/Text: +1(501)800-0690 And whatsapp: +1 (501) 214‑1395

NEED A LOAN?
Ask Me.