Develop a Java program that performs the following: Model a bank account with these details: Name and Surname of person holding the account Address of the person Phone number Balance Credit or Withdraw method Last operation performed (Credit or Withdraw) The program should: Be able to take from keyboard the name, surname, phone number, address of the person and create a bank account with these data. Be able to print the data of the person and the balance. Be able to take from keyboard the amount to credit or withdraw (positive is credit and negative is withdraw). Be able to print the last operation performed. Increase the balance by a percentage inserted from the user

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Good Day,

I have a question about java code.

Code is on the Images. its error when it comes to withdrawing balance.

Anyone Can help me?

Thanks.

this should be the output:

Develop a Java program that performs the following:

  • Model a bank account with these details:
    • Name and Surname of person holding the account
    • Address of the person
    • Phone number
    • Balance
    • Credit or Withdraw method
    • Last operation performed (Credit or Withdraw)
  • The program should:
    • Be able to take from keyboard the name, surname, phone number, address of the person and create a bank account with these data.
    • Be able to print the data of the person and the balance.
    • Be able to take from keyboard the amount to credit or withdraw (positive is credit and negative is withdraw).
    • Be able to print the last operation performed.
    • Increase the balance by a percentage inserted from the user
*Bank.java X D Details.java
public class Bank{
private String name, surName;
private String address;
private long phoneNum;
private double balance;
private String lastoperationPerformed;
// parameterized constructor to initialize te instance variables
public Bank(String name, String surName, String address, long phoneNum) {
super();
this.name = name;
this.surName = surName;
this.address = address;
this.phoneNum = phoneNum;
this.balance = 0.0;
this.lastOperationPerformed = "No Acction perfomed";
}
public String getName () {
return name;
}
public String getSurName () {
return surName;
public String getAddress () {
return address;
}
public long getPhoneNum() {
return phoneNum;
}
public double getBalance() {
return balance;
public String getlastOperationPerformed () {
return lastoperationPerformed ;
}
public void credit(double amount) {
lastOperationPerformed = "Credit";
this.balance += amount;
System.out.println("New Balance after credit: "+balance);
}
public void withdraw (double amount){
lastoperationPerformed = "Withdraw";
if(amount <= this.balance) {
this.balance -- amount;
else {
System.out.println("Insufficient Balance !!");
}
}
}
Transcribed Image Text:*Bank.java X D Details.java public class Bank{ private String name, surName; private String address; private long phoneNum; private double balance; private String lastoperationPerformed; // parameterized constructor to initialize te instance variables public Bank(String name, String surName, String address, long phoneNum) { super(); this.name = name; this.surName = surName; this.address = address; this.phoneNum = phoneNum; this.balance = 0.0; this.lastOperationPerformed = "No Acction perfomed"; } public String getName () { return name; } public String getSurName () { return surName; public String getAddress () { return address; } public long getPhoneNum() { return phoneNum; } public double getBalance() { return balance; public String getlastOperationPerformed () { return lastoperationPerformed ; } public void credit(double amount) { lastOperationPerformed = "Credit"; this.balance += amount; System.out.println("New Balance after credit: "+balance); } public void withdraw (double amount){ lastoperationPerformed = "Withdraw"; if(amount <= this.balance) { this.balance -- amount; else { System.out.println("Insufficient Balance !!"); } } }
java
D Details.java X
import java.util.Scanner;
public class Details{
static Scanner sc = new Scanner (System. in);
public static void main(String[] args) {
Bank account = getBank();
displayDetails(account);
System.out.println("Enter the amount (Positive to Credit or Negative to Withdraw):");
double amount = sc.nextDouble();
sc. nextline();
if(amount >0) {
account.credit(amount);
}else {
account.withdraw(amount);
System.out.println("Last operation performed: "+account.getlastOperationPerformed());
System.out.println("Enter the percentage to increase the balance: ");
int percent = sc.nextInt();
double increaseAmount = account.getBalance() * percent * 0.01;
account.credit(increaseAmount);
private static void displayDetails(Bank account) {
System.out.println("Account details: ");
System.out.println("Name: "+account.getName () +
System.out.println("Address: "+account.getAddress());
System.out.println("Phone Num: "+account.getPhoneNum());
System.out.println("Balance: "+account.getBalance());
System.out.println("Last Operation performed: "+account.getLastOperationPerformed ());
"+account.getSurName ());
private static Bank getBank() {
Bank account;
String name, surname, address;
long phoneNum;
System.out. println("FILL OUT THE DETAILS: ");
System.out. println("First name: ");
name = sc.nextline();
System.out.println("SurName: ");
surname = sc.nextLine();
System.out.println("Phone number: ");
phoneNum = Long.parselong( sc.nextLine());
System.out.println("Address: ");
address = sc.nextline();
//instantiating the BankAccount class
account = new Bank(name, surname, address, phoneNum);
return account;
}
Transcribed Image Text:java D Details.java X import java.util.Scanner; public class Details{ static Scanner sc = new Scanner (System. in); public static void main(String[] args) { Bank account = getBank(); displayDetails(account); System.out.println("Enter the amount (Positive to Credit or Negative to Withdraw):"); double amount = sc.nextDouble(); sc. nextline(); if(amount >0) { account.credit(amount); }else { account.withdraw(amount); System.out.println("Last operation performed: "+account.getlastOperationPerformed()); System.out.println("Enter the percentage to increase the balance: "); int percent = sc.nextInt(); double increaseAmount = account.getBalance() * percent * 0.01; account.credit(increaseAmount); private static void displayDetails(Bank account) { System.out.println("Account details: "); System.out.println("Name: "+account.getName () + System.out.println("Address: "+account.getAddress()); System.out.println("Phone Num: "+account.getPhoneNum()); System.out.println("Balance: "+account.getBalance()); System.out.println("Last Operation performed: "+account.getLastOperationPerformed ()); "+account.getSurName ()); private static Bank getBank() { Bank account; String name, surname, address; long phoneNum; System.out. println("FILL OUT THE DETAILS: "); System.out. println("First name: "); name = sc.nextline(); System.out.println("SurName: "); surname = sc.nextLine(); System.out.println("Phone number: "); phoneNum = Long.parselong( sc.nextLine()); System.out.println("Address: "); address = sc.nextline(); //instantiating the BankAccount class account = new Bank(name, surname, address, phoneNum); return account; }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY