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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:25:12+00:00 2026-05-16T16:25:12+00:00

sorry Friends i did a mistake. I have did this mistake again. am really

  • 0

sorry Friends i did a mistake. I have did this mistake again. am really very sorry.

this is the Issue.

I have a time range like

int Starttime = 2 which mean(02:00)
int enttime =  8 which mean(08:00)

i want time in sum of bits,
example

     00:00 1  
     01:00 2    
     02:00 4  -----
     03:00 8   R
     04:00 16  a
     05:00 32  n
     06:00 64  g
     07:00 128 e
     08:00 256 -----

and soo on till 23:00

so i need totalRange = 256+128+64+32+16+8+4 ;

it should be like this
sorry again.

Thanks

  • 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-16T16:25:13+00:00Added an answer on May 16, 2026 at 4:25 pm

    The table indicates that you want to map the hour value of a time to an integer value using this function:

    int value = (int) Math.pow(2, hourValue);
    

    or, in other words, 00:00h will map to 20, 12:00h to 212 and so on.

    Now if you have need the sum of start and endtime, you can simple use the function from above and add the values:

    int totalrange = (int) Math.pow(2, starttime) + (int) Math.pow(2, endtime);
    

    Now if you have starttime=2 and endtime=23, this will give a result (written in binary):

    01000000 00000000 00000100
    

    shamelessly adapting polygenelubricants much faster solution:

    int totalrange = (1 << starttime) + (1 << endtime);
    

    This works, because 2i is equal to (1 << i).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm really sorry. This must seem like an incredibly stupid question, but unless I
Sorry friends if this question is very easy but i am confuse i unable
Sorry I am very new to open graph and have been having difficulty to
I have this code I been working on but I'm having a hard time
Sorry for the noobish question, this is the first time i try to implement
really sorry about being totally thick today but I have forgotten how to do
I'm sorry I'm really new to Java, I'm working on friends project. I seem
Sorry in advance if this not 'SO'-ish enough--- I have a tech writing friend
Sorry for this simple question . I have a Stored Procedure that return an
Sorry for this simple question, but I can't solve it... There is an example:

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.