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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:12:19+00:00 2026-05-10T21:12:19+00:00

So I am currently learning C++ and decided to make a program that tests

  • 0

So I am currently learning C++ and decided to make a program that tests my skills I have learned so far. Now in my code I want to check if the value that the user enters is a double, if it is not a double I will put a if loop and ask them to reenter it. The problem I have is how do I go about checking what type of variable the user enters, ex- if a user enters a char or string, I can output an error message. Here is my code:

//cubes a user entered number #include <iostream> using namespace std;  double cube(double n); //function prototype  int main() {     cout << 'Enter the number you want to cube: '; //ask user to input number     double user;     cin >> user;  //user entering the number      cout << 'The cube of ' << user << ' is ' << cube(user) << '.' << endl; //displaying the cubed number      return 0; }  double cube (double n) //function that cubes the number {     return n*n*n; // cubing the number and returning it } 

Edit: I would have to say I just started and don’t have the slightest of clue about your code, but I will check out your link. By the way, I haven’t learned how to work with templates yet,I am learning about dealing with data, only Chapter 3 in my C++ Primer Plus 5th edition.

  • 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. 2026-05-10T21:12:19+00:00Added an answer on May 10, 2026 at 9:12 pm

    There is no suitable way to check if a string really contains a double within the standard library. You probably want to use Boost. The following solution is inspired by recipe 3.3 in C++ Cookbook:

    #include <iostream> #include <boost/lexical_cast.hpp> using namespace std; using namespace boost;  double cube(double n);  int main() {     while(true)     {         cout << 'Enter the number you want to cube: ';         string user;         cin >> user;          try         {             // The following instruction tries to parse a double from the 'user' string.             // If the parsing fails, it raises an exception of type bad_lexical_cast.             // If an exception is raised within a try{ } block, the execution proceeds             // with one of the following catch() blocks             double d = lexical_cast <double> (user);                 cout << 'The cube of ' << d << ' is ' << cube(d) << '.' << endl;             break;         }         catch(bad_lexical_cast &e)         {             // This code is executed if the lexical_cast raised an exception; We             // put an error message and continue with the loop             cout << 'The inserted string was not a valid double!' << endl;         }     }     return 0; }  double cube (double n) {     return n*n*n; } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 78k
  • Answers 79k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Try this. May 11, 2026 at 3:58 pm
  • added an answer You should use an inline tag like <span> May 11, 2026 at 3:58 pm
  • added an answer Does it have to be done within vim? Could you… May 11, 2026 at 3:58 pm

Related Questions

Good night :) I am currently playing with the DevIL library that allows me
I'm learning C#. From what I know, you have to set things up correctly
I am currently learning ASP.NET MVC so please excuse my question if it has
I am currently learning ironpython and loving but i'm looking to move on from

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.