Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7503347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:11:18+00:00 2026-05-29T21:11:18+00:00

For an assignment, I had to code a due date which is 30 days

  • 0

For an assignment, I had to code a due date which is 30 days after the invoice date. When I run my program, I’m not getting a correct date. I’m not sure what I did wrong. Any help would be appreciated.

Code from class that creates and formats due date:

// a method that returns the due date
public Date getDueDate()
{
    Date dueDate = new Date(invoiceDate.getTime() +
            (30 * 24 * 60 * 60 * 1000));
    return dueDate;
}

// a method that returns the formatted due date
public String getFormattedDueDate()
{
    DateFormat shortDueDate  = DateFormat.getDateInstance(DateFormat.SHORT);
    return shortDueDate.format(this.getDueDate());
}

Code from main class which calls the getFormattedDueDate:

public static void displayInvoices()
{
    System.out.println("You entered the following invoices:\n");
    System.out.println("Number\tTotal\tInvoice Date\tDue Date");
    System.out.println("------\t-----\t------------\t--------");
    double batchTotal = 0;
    int invoiceNumber = 1;
    while (invoices.size() > 0)
    {
        Invoice invoice = invoices.pull();
        System.out.println(invoiceNumber + "\t     " + invoice.getFormattedTotal()
                + "       " + invoice.getFormattedDate()
                + "\t     " + invoice.getFormattedDueDate());

        invoiceNumber++;
        batchTotal += invoice.getInvoiceTotal();
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:11:19+00:00Added an answer on May 29, 2026 at 9:11 pm

    In general it’s bad to perform date math like that, IMO. Do this:

    public Date getDueDate() {
       Calendar cal = Calendar.getInstance();
       cal.setTime(invoiceDate);
       cal.add(Calendar.DAY_OF_MONTH, 30);
       return cal.getTime();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently wrote a class for an assignment in which I had to store
This is a class assignment. I had written some codes which I hope someone
For this assignment I had to create my own string class. I initially wrote
So basically the assignment was we had to create a doubly linked list that's
My kiddo had a homework assignment to write Blackjack in Java. I helped him
I'm working on a class assignment that started small, so I had it all
The assignment at my first year uni computing course says my program should read
For a school assignment I have to write x86 assembly code, except I can't
I used FxCop to analyze some code I had written. I had exposed a
In school, one of my professors had created a 3D game (not just an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.