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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T23:35:43+00:00 2026-06-08T23:35:43+00:00

I have a currency in pennies, as an integer (ex: 1234 ). I need

  • 0

I have a currency in pennies, as an integer (ex: 1234). I need the output to be: $12.34. We are not allowed to use doubles or floats on this assignment, only Integers.

Here is what I have:

totalChange = 1234;
DecimalFormat ourFormat = new DecimalFormat("$#,###.00");
String totalString = ourFormat.format(totalChange);
System.out.println("Your change of " + totalString + " is as follows:");

I would assume that the DecimalFormat would go from right to left, assigning 34 to be after the decimal point, and the 12 should be placed before.

I’m getting an output of Your change of $1234.00 is as follows:

  • 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-06-08T23:35:45+00:00Added an answer on June 8, 2026 at 11:35 pm

    Format will not artificially introduce decimal places not present in the input.

    You could try converting to dollars and cents first, then combining the two with ‘.’

    int dollars = totalChange / 100;
    int cents = totalChange % 100;
    

    Hint (Based on comment from @DanielFischer)

    Cents can be 1 or 2 digits, but you probably want to output them always as 2 digits.

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

Sidebar

Related Questions

I have this code and to cast a currency-prefixed number to an integer. $t
I have a string something like this. ars:a:currency (Argentina!: Pesos): i need to split
I have an assignment that my teacher has told us to use this in
I have a GWT project in which I need to manually specify currency, number
I have get currency code (Eg: USD, EUR, INR) from webservice response. I need
I have a price that I need to convert based on the selected currency.
I have a form_remote working perfectly for the form currency. The only change I
I have two tables which I need to join. First Table: EFF_DATE RATE CURRENCY
Is it possible to have PHP format currency values, for example: $200 will output
I have a NSString value of @78000. How do I get this in currency

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.