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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:45:37+00:00 2026-05-13T15:45:37+00:00

I feel really silly asking this because I know how to do it 101

  • 0

I feel really silly asking this because I know how to do it 101 ways, but not the way it is defined in the book. (note, I know C++)

So far, we have only gone over the very basics of C++. So basically, we know variables, assignment, and basic casting.

In the book I am having trouble with this portion of the problem:

  • prompt the user to input a decimal number
  • Convert that number to the nearest integer and print it to the screen

So I have the trivial code:

double n;
cout<<"Number: ";
cin >> n;
cout <<endl<<static_cast<int>(n)<<endl;

But I realized this does not work for me. It will always truncate the decimal so that 1.9 -> 1 rather than the expected 1.9 -> 2

How do I fix this using only what I “know”? (as in, without round() or if statements and such)

Is this a standards compliance problem? At school I thought I had something similar working with Visual C++ 2005 on Windows XP 32 bit, but now I’m at my home trying to do the same thing and it’s not working. My home compiler is gcc 3.3.5 on OpenBSD 64bit. Or could this be a typo in the book?

  • 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-13T15:45:37+00:00Added an answer on May 13, 2026 at 3:45 pm

    static_cast<int>(n+0.5)

    Or static_cast<int>(n >= 0 ? n + 0.5 : n - 0.5) for more proper behavior on negative n.

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

Sidebar

Related Questions

I feel really silly for asking this, but what am I doing wrong with
I feel kind of silly asking this question as it seems really simple, but
I feel really silly for asking this , but how do I place buttons
I feel really silly asking this question but how do you add any data
I feel like this might be really simple but I'm just not getting it
I feel like there's a simple solution to this, but I'm not really sure
I feel really dumb for asking this question, but here it goes. I have
I feel silly asking this, but, I just can't work out how to create
I feel really silly to not be able to find this answer anywhere. Could
ok... so I feel really stupid asking this question.. but just wondering about the

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.