Do a program that displays a simulated writing check.Use supplied Check.java and CheckDemo.java. It should then display a simulated check with the dollar amount spelled out,as shown. Check.Demo package checks; import java.time.LocalDate; public class Check {     private double amount;     private String payee;     private LocalDate date;     /*      * Constructor      */     public Check(double amount, String payee, LocalDate date) {         // Your code here     }     public Check(Check original) {         // Your code here     }     /*      * Returns a String representing the check      */     public String toString() {         String result = "\t\t\t\tDate:\t";         result += date.getMonthValue() + "/";         result += date.getDayOfMonth() + "/";         result += date.getYear() + "\n\n";         result += "Pay to the Order of: " + payee + "\t\t";         result += "$" + amount + "\n\n";         result += amountText() + "\n";         return result; //        return amountText();     }     private String amountText() {         String result = "";         // Your code here                  return result;     }     /*      * Mutators      */     public void setAmount(double amount) {         // Your code here     }     public void setPayee(String payee) {         // Your code hree     }     public void setDate(LocalDate date) {         // Your code here     }     /*      * Accessors      */     public double getAmount() {         // Your code here     }     public String getPayee() {         // Your code here     }     public LocalDate getDate() {         // Your code here     } } CheckDemo.java package check; import java.time.LocalDate; public class CheckDemo {     public static void main(String[] args) {         Check check = new Check(1915.85, "Walmart", LocalDate.of(2021, 11, 24));         System.out.println(check);         check = new Check(15.25, "McDonald", LocalDate.of(2021, 11, 24));         System.out.println(check);                  check = new Check(999.00, "Rent", LocalDate.of(2021, 11, 24));         System.out.println(check);                  check = new Check(6000.01, "Trip", LocalDate.of(2021, 11, 24));         System.out.println(check);                  check = new Check(16518.01, "Car", LocalDate.of(2021, 11, 24));         System.out.println(check);                  check = new Check(25000.99, "Tuition", LocalDate.of(2021, 11, 24));         System.out.println(check); //        for (int dollar = 0; dollar < 10000; dollar++) { //            check.setAmount(dollar + (Math.random() * 100) / 100.0); //            System.out.println(check); //        }     } }

Np Ms Office 365/Excel 2016 I Ntermed
1st Edition
ISBN:9781337508841
Author:Carey
Publisher:Carey
Chapter3: Performing Calculations With Formulas And Functions
Section: Chapter Questions
Problem 2.6CP
icon
Related questions
Question

Do a program that displays a simulated writing check.Use supplied Check.java and CheckDemo.java.
It should then display a simulated check with the dollar amount spelled out,as shown.

Check.Demo

package checks;

import java.time.LocalDate;

public class Check {
    private double amount;
    private String payee;
    private LocalDate date;

    /*
     * Constructor
     */
    public Check(double amount, String payee, LocalDate date) {
        // Your code here
    }

    public Check(Check original) {
        // Your code here
    }

    /*
     * Returns a String representing the check
     */
    public String toString() {
        String result = "\t\t\t\tDate:\t";
        result += date.getMonthValue() + "/";
        result += date.getDayOfMonth() + "/";
        result += date.getYear() + "\n\n";
        result += "Pay to the Order of: " + payee + "\t\t";
        result += "$" + amount + "\n\n";
        result += amountText() + "\n";
        return result;
//        return amountText();
    }

    private String amountText() {
        String result = "";

        // Your code here
        
        return result;
    }


    /*
     * Mutators
     */
    public void setAmount(double amount) {
        // Your code here
    }

    public void setPayee(String payee) {
        // Your code hree
    }

    public void setDate(LocalDate date) {
        // Your code here
    }

    /*
     * Accessors
     */
    public double getAmount() {
        // Your code here
    }

    public String getPayee() {
        // Your code here
    }

    public LocalDate getDate() {
        // Your code here
    }
}

CheckDemo.java

package check;

import java.time.LocalDate;

public class CheckDemo {

    public static void main(String[] args) {
        Check check = new Check(1915.85, "Walmart", LocalDate.of(2021, 11, 24));
        System.out.println(check);

        check = new Check(15.25, "McDonald", LocalDate.of(2021, 11, 24));
        System.out.println(check);
        
        check = new Check(999.00, "Rent", LocalDate.of(2021, 11, 24));
        System.out.println(check);
        
        check = new Check(6000.01, "Trip", LocalDate.of(2021, 11, 24));
        System.out.println(check);
        
        check = new Check(16518.01, "Car", LocalDate.of(2021, 11, 24));
        System.out.println(check);
        
        check = new Check(25000.99, "Tuition", LocalDate.of(2021, 11, 24));
        System.out.println(check);
//        for (int dollar = 0; dollar < 10000; dollar++) {
//            check.setAmount(dollar + (Math.random() * 100) / 100.0);
//            System.out.println(check);
//        }

    }

}

ONCORDome Louvaappiations 10000 OCT LINTUT our
Date:
Pay to the Order of: McDonald
FIFTEEN and 25/100
Pay to the Order of: Walmart
ONE THOUSAND NINE HUNDRED FIFTEEN and 85/100
Date:
Date:
Pay to the Order of: Rent
NINE HUNDRED NINETY NINE and 0/100
Date:
11/24/2021
$1915.85
Pay to the Order of: Trip
SIX THOUSAND ZERO HUNDRED and 1/100
11/24/2021
$15.25
11/24/2021
$999.0
11/24/2021
$6000.01
Transcribed Image Text:ONCORDome Louvaappiations 10000 OCT LINTUT our Date: Pay to the Order of: McDonald FIFTEEN and 25/100 Pay to the Order of: Walmart ONE THOUSAND NINE HUNDRED FIFTEEN and 85/100 Date: Date: Pay to the Order of: Rent NINE HUNDRED NINETY NINE and 0/100 Date: 11/24/2021 $1915.85 Pay to the Order of: Trip SIX THOUSAND ZERO HUNDRED and 1/100 11/24/2021 $15.25 11/24/2021 $999.0 11/24/2021 $6000.01
Pay to the Order of: Rent
NINE HUNDRED NINETY NINE and 0/100
Date:
Pay to the Order of: Trip
SIX THOUSAND ZERO HUNDRED and 1/100
Pay to the Order of: Car
SIXTEEN THOUSAND FIVE HUNDRED
Date:
$999.0
11/24/2021
$6000.01
11/24/2021
$16518.01
EIGHTEEN and 0/100
Date: 11/24/2021
$25000.99
Pay to the Order of: Tuition
TWENTY FIVE THOUSAND ZERO HUNDRED and 99/100
Transcribed Image Text:Pay to the Order of: Rent NINE HUNDRED NINETY NINE and 0/100 Date: Pay to the Order of: Trip SIX THOUSAND ZERO HUNDRED and 1/100 Pay to the Order of: Car SIXTEEN THOUSAND FIVE HUNDRED Date: $999.0 11/24/2021 $6000.01 11/24/2021 $16518.01 EIGHTEEN and 0/100 Date: 11/24/2021 $25000.99 Pay to the Order of: Tuition TWENTY FIVE THOUSAND ZERO HUNDRED and 99/100
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 5 images

Blurred answer
Knowledge Booster
Random Class and its operations
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
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
Operations Research : Applications and Algorithms
Operations Research : Applications and Algorithms
Computer Science
ISBN:
9780534380588
Author:
Wayne L. Winston
Publisher:
Brooks Cole