Writing the setbank functions Setbalance Setaccont In order to enter the creditcard data instead of entering it into the constructor function and execute it in the main class public class CreditCard {     private String customer;     private String bank;     private String account;     protected double balance;         public CreditCard(String cust,String bk, String acnt,double initialBal)         {         customer=cust;         bank=bk;         account=acnt;         balance=initialBal;     }         public CreditCard(String cust, String bk, String acnt)     {         this(cust,bk,acnt,0.0);     }          public String getCustomer()  { return customer; }  public String getBank()  { return bank; }  public String getAccount()   { return account; }   public double getBalance()   { return balance; }  // Update methods:   public void charge(double price) { // make a charge             balance += price; }                       public void makePayment(double amount) { // make a payment        balance -= amount; }         public static void printSummary(CreditCard card) {       System.out.println("Customer = " + card.customer);      System.out.println("Bank = " + card.bank);       System.out.println("Account = " + card.account);       System.out.println("Balance = " + card.balance);                  }   }        public class CreditCardMain {                public static void main(String[ ] args) {            CreditCard card= new CreditCard("John Bowman", "California Savings",           "5391 0375 9387 5309", 5000);   card.charge(2000);    card.makePayment(1000);    CreditCard.printSummary(card);               // calling static method      }      }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 8PE
icon
Related questions
Question

Writing the setbank functions
Setbalance
Setaccont
In order to enter the creditcard data instead of entering it into the constructor function
and execute it in the main class

public class CreditCard {
    private String customer;
    private String bank;
    private String account;
    protected double balance;
        public CreditCard(String cust,String bk, String acnt,double initialBal)
        {
        customer=cust;
        bank=bk;
        account=acnt;
        balance=initialBal;
    }
        public CreditCard(String cust, String bk, String acnt)
    {
        this(cust,bk,acnt,0.0);
    }
         public String getCustomer()
 { return customer; }
 public String getBank()
 { return bank; }
 public String getAccount() 
 { return account; } 
 public double getBalance() 
 { return balance; }
 // Update methods: 
 public void charge(double price) { // make a charge
            balance += price; }                    
  public void makePayment(double amount) { // make a payment 
      balance -= amount; }
        public static void printSummary(CreditCard card) { 
     System.out.println("Customer = " + card.customer);
     System.out.println("Bank = " + card.bank); 
     System.out.println("Account = " + card.account); 
     System.out.println("Balance = " + card.balance); 
                } 
 }
    

 

public class CreditCardMain {
    
    
     public static void main(String[ ] args) { 
    
   
 CreditCard card= new CreditCard("John Bowman", "California Savings",
          "5391 0375 9387 5309", 5000); 
 card.charge(2000);
 
 card.makePayment(1000);
 
 CreditCard.printSummary(card);
          
   // calling static method
   
 }
    
}

Expert Solution
steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage