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 7587505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:41:29+00:00 2026-05-30T19:41:29+00:00

so i have this homework and this is the given problem: Per-minute charging offers

  • 0

so i have this homework and this is the given problem:

Per-minute charging offers at 75 cents a minute from 5:01 am to 5:00 pm, and 90 cents a minute from 5:01 pm to 5:00 am.

this is my code:

double charge = 0;

Date date = new Date();

if(date.getHours() >= 5 && date.getHours() <= 17)
{
    charge += 0.75 * date.getMinutes();
    System.out.println(charge);
}
else
{
    charge += 0.9 * date.getMinutes();
    System.out.println(charge);
}

my problem is that the date.getMinutes() only gets the current minute of the current hours,
it supposed to be the number of minutes from 5:01am up to the current time and the else statement likewise. any idea guys? thx alot!

  • 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-30T19:41:30+00:00Added an answer on May 30, 2026 at 7:41 pm

    Well, for this you can do

    totalHours = date.getHours() - 5;
    totalMinutes = (totalHours * 60) + date.getMinutes();
    

    Similarly, you could write it for the other part.

    As it has been pointed out that the above methods have been deprecated, here is how you can do it with the Calendar

    Date date = new Date();
    Calendar calendar = GregorianCalendar.getInstance();
    calendat.setTime(date);
    
    if(calendar.get(Calendar.HOUR_OF_DAY) > 5 && calendar.get(Calendar.HOUR_OF_DAY) < 17)
    {
        int totalHours = calendar.get(Calendar.HOUR_OF_DAY) - 5;
        int totalMinutes = (totalHours * 60) + calendar.get(Calendar.MINUTE);
    }
    
    else
    {
        totalHours = 24 - calendar.get(HOUR_OF_DAY) + 5;
        totalMinutes = (totalHours * 60) - (60 - calendar.get(Calendar.MINUTE);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is my homework, but please read my problem description first. I have to
I have to make for homework 2 linked lists, put integers given from the
I am stumped on this homework problem. I think I have the right answer
I have this problem for homework (I'm being honest, not trying to hide it
For homework we have been given the bathroom synchronization problem. I have been struggling
First of all this is not 'homework', its a problem from Thinking in C++
I was taught HMM and given this homework problem. I understood a part of
I have a homework problem that asks: Desgin a derived class GraduateStudent from base
Continuing on this problem , but I'll reiterate: For a homework assignment I have
I have the following homework problem: Given an array of scores, return true if

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.