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 60k
  • Answers 61k
  • 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 It allows you to write functional tests in your 'unit'… May 11, 2026 at 9:36 am
  • added an answer I think you've accurately captured the two most popular approaches… May 11, 2026 at 9:36 am
  • added an answer A factory pattern is a creational pattern. A strategy pattern… May 11, 2026 at 9:36 am

Related Questions

So I am currently learning C++ and decided to make a program that tests
Currently, I am splitting all my tests by package (projects). So if I have
I am configure log4net to use a composite RollingFileAppender so that the current file
So I am writing a registration form and I need the display name to
So i am reorganizing a winforms C# solution to help decouple and make it
So I am just starting out developing PHP web applications and have finished setting
So I am working on a project that uses a ASP.NET server and we
So I am doing a lot of high performance network programming using Boost::Asio (or
So I am following this guide: http://technotes.1000lines.net/?p=23 and I am going through the steps.
So I am trying to accomplish something like this: SELECT * FROM table WHERE

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.