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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:33:15+00:00 2026-05-26T06:33:15+00:00

I got: int number = 1255; -> //It could also be 125(1€25Cent) or 10(10Cent)

  • 0

I got:

int number = 1255; -> //It could also be 125(1€25Cent) or 10(10Cent) or 5(5Cent)

public double toMoney(int number)
{
...
}

as return, I want the double number: 12.55 or if input: 10 then: 00.10

I know that I can do with Modulo something like this:

1255 % 100.. to get 55.. But how to do it for 12 and at the end, how to
form it as a double?

  • 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-26T06:33:16+00:00Added an answer on May 26, 2026 at 6:33 am

    If I’m understanding your question correctly, you’re probably trying to just do this:

    return (double)number / 100.;
    

    Though a word of warning: You shouldn’t be using floating-point for money due to round-off issues.

    If you just want to print the number in money format, here’s a 100% safe method:

    System.out.print((number / 100) + ".");
    int cents = number % 100;
    if (cents < 10)
        System.out.print("0");
    System.out.println(cents);
    

    This can probably be simplified a lot better… Of course you can go with BigDecimal, but IMO that’s smashing an ant with a sledgehammer.

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

Sidebar

Related Questions

I got the following: class A{ int foo; } class B extends A{ public
Say we've got: struct IsEven { bool operator() (int i) { return i %
I've got two theoretical domain objects: public class Person { public virtual int Id
I got a fixed number of threads. I want each thread to run three
I got a list of RegionGroup objects with two properties: an int number and
I've got a number which is less than 500,000,000 and I want to factorize
I've got some numbers that is now larger than INT can handle. This is
I've got a int, that is changed in a previous method, that now has
Say I have a Student table, it's got an int ID. I have a
I got an array which contains signed int data, i need to convert each

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.