Thread: Only Accepting Ints and Doubles

  1. #1
    Registered User
    Join Date
    Feb 2015
    Posts
    225

    Only Accepting Ints and Doubles

    I am writing a code that will only allow integers between a minimum and maximum value. However, I'm having trouble limiting the user to just integers. Here's what I have so far. The commented part is where I'm having trouble.

    Code:
      int GetInteger(const int& min, const int& max) {
        int input;
        const std::string invalid_int_("Failure: No integer found.");
        const std::string low_int_("Failure: Integer is below minimum value.");
        const std::string high_int_("Failure: Integer is above maximum value.");
        if (/*needs to only accept numbers*/) {
          if (input < min) {
            std::cout << low_int_ << endl;
            input = 0;
          } else if (input > max) {
            std::cout << high_int_ << endl;
            input = 0;
          }
        } else {
          std::cout <<invalid_int_ << endl;
          input = 0;
        }
        return input;
      }
    To clarify, I can't do something like this
    Code:
    if(x <= 9999999 && x > 0)
    This would be problematic if the user set the max to something even higher. I need to accept all numbers. Only after that can I start limiting them to be between the min and the max.

    I am also making a nearly identical function, except in this case it would only allow doubles. Can someone please explain to me how to do this? Thank you.

    Note: I do not need to accept scientific notation for doubles.

  2. #2
    Registered User
    Join Date
    May 2010
    Posts
    4,632
    You could start by using some of the functionality of std::numeric_limits. But if you're using any integer type you will never be able to accept all numbers.

    Jim

  3. #3
    Registered User
    Join Date
    Feb 2015
    Posts
    225
    Well let's see if I got this right...so if I DID make the parameters of this function -2147483648 and 2147483647, I would be allowing all possible integers in the C++ language, yes?

  4. #4
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by Erik Ingvoldsen View Post
    I would be allowing all possible integers in the C++ language, yes?
    I don't believe the standard says the limits of types or their sizes, so that would be a no. But popular implementations have 64-bit types, so the ranges would be higher than that.

    Anyway, as far as your problem goes, you should read the input into a string and then parse it to find the real type of the input the user entered (i.e. be it a floating point or integer).
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  5. #5
    Registered User
    Join Date
    Feb 2015
    Posts
    225
    I'm sorry, but I've never heard of the term "parse". What does that mean? How would I implement it?

  6. #6
    Registered User
    Join Date
    May 2010
    Posts
    4,632
    Not necessarily an int could hold larger values or those values could be too large. Remember the ranges of the integral types are implementation defined and those values are much larger than the value that an int must be able to accommodate for standard conformance. That is why I suggested you look into the numeric_limits class. By using this class you can determine the minimum and maximum values your integers can accommodate.

    Jim

  7. #7
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    One approach is to use std::cin >> input and check the return value, which is precisely what you would do if you placed that as the condition of the if statement.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  8. #8
    Registered User
    Join Date
    Feb 2015
    Posts
    225
    Hmmm...well I was going to use getline on the main method when I tested this out. What's the difference between the two?

  9. #9
    Master Apprentice phantomotap's Avatar
    Join Date
    Jan 2008
    Posts
    5,108
    Hmmm...well I was going to use getline on the main method when I tested this out. What's the difference between the two?
    O_o

    You can use whatever you want to get the input from the user.

    The point laserlight was making is that you can validate that the input is actually an integer.

    In your case, you could `getline' a string before throwing the input into `std::istringstream' which you could then use to try and pull out an integer.

    Soma
    “Salem Was Wrong!” -- Pedant Necromancer
    “Four isn't random!” -- Gibbering Mouther

  10. #10
    Registered User
    Join Date
    Feb 2015
    Posts
    225
    Quote Originally Posted by phantomotap View Post
    before throwing the input into `std::istringstream' which you could then use to try and pull out an integer.
    This is where I'm getting confused. Do you think you could show me an example?

  11. #11
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Are you compiling with respect to C++11? If so, there's also std::stoi, which you can call after calling std::getline. If not, it could be something along these lines:
    Code:
    int result;
    std::string line;
    if (getline(std::cin, line))
    {
        std::stringstream ss(line);
        if (ss >> result && ss.eof())
        {
            // Valid input stored in result
            // though another check is needed if the desired range is smaller than the range of int
        }
        else
        {
            // Report an input error
        }
    }
    ss.eof() is used to ensure that there isn't say, a stray alphabetic letter after the integer portion of the line.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  12. #12
    Registered User
    Join Date
    Feb 2015
    Posts
    225
    OK, I tried to implement what you put down, as well as make some other changes when I realized the project didn't give me any input values for the parameters. It's compiling just fine, but there's a problem with the test. This is my current code:

    Code:
    class UserInputHandler {
    public: 
      int GetInteger(int min, int max) {
        const std::string invalid_int_("Failure: No integer found.");
        const std::string low_int_("Failure: Integer is below minimum value.");
        const std::string high_int_("Failure: Integer is above maximum value.");
        int result;
        min = 0; 
        max = 100;
        std::string line;
        std::cin >> line;
        if (getline(std::cin, line)) {
          std::stringstream ss(line);
          if (ss >> result && ss.eof()) {
            if (result < min) {
              std::cout << low_int_ << endl;
              result = 0;
            } else if (result > max) {
              std::cout << high_int_ << endl;
              result = 0;
            }
          } else {
          std::cout <<invalid_int_ << endl;
          result = 0;
          }
        }
      std::cout << "Integer Entered is: " << result << endl;
      return result;
      }
    };
    
    int main() {
     UserInputHandler handler;
     handler.GetInteger(0,100);
    }
    But when I test it, it tells me my integer is not an integer.

    Code:
    $ ./test
    2
    Failure: No integer found.
    Integer Entered is: 0

  13. #13
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    I noticed that you have this line still in your code even though you are calling getline:
    Code:
    std::cin >> line;
    Remember to #include <sstream> for std::stringstream. It may have been included indirectly, but you should not rely on that.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  14. #14
    Registered User
    Join Date
    May 2010
    Posts
    4,632
    You're also not using the parameters since one of the first things you do is reassign them to constant values:

    Code:
     int GetInteger(int min, int max) {
    
    ...
        min = 0;
        max = 100;
    One other note look at this snippet:

    Code:
              std::cout << high_int_ << endl;
    You're properly scoping std::cout but fail to properly scope std::endl;

    You should be including several headers in this file, <iostream>, <string> and <sstream> don't rely on some "magic" to include the required include files always include the required files.


    Jim

  15. #15
    Registered User
    Join Date
    Feb 2015
    Posts
    225
    Oops, added those values in and I forgot to take them out. And yeah, everything's included. I put it all in beforehand just in case I ever need it. Anyway, I updated the code but there's a small problem with the test:

    Code:
    class UserInputHandler {
    public: 
      int GetInteger(const int& min, const int& max) {
        const std::string invalid_int_("Failure: No integer found.");
        const std::string low_int_("Failure: Integer is below minimum value.");
        const std::string high_int_("Failure: Integer is above maximum value.");
        int result;
        std::string line;
        std::getline(std::cin, line);
        if (getline(std::cin, line)) {
          std::stringstream ss(line);
          if (ss >> result && ss.eof()) {
            if (result < min) {
              std::cout << low_int_ << endl;
              result = 0;
            } else if (result > max) {
              std::cout << high_int_ << endl;
              result = 0;
            }
          } else {
          std::cout <<invalid_int_ << endl;
          result = 0;
          }
        }
      std::cout << "Integer Entered is: " << result << endl;
      return result;
      }
    };
    
    int main() {
     UserInputHandler handler;
     handler.GetInteger(0,100);
    }
    The test, however, asks me to input two things for some reason.

    Code:
    $ ./test
    1
    2
    Integer Entered is: 2
    I admit, I should have asked you from the start what these if statements were doing exactly but I was stressing over other problems with the code. But it's better that I understand what's going on, so I'd also like to ask what's happening here.

    Code:
    if (getline(std::cin, line))
    {
        std::stringstream ss(line);
        if (ss >> result && ss.eof())
        {

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. accepting two inputs
    By Aratel in forum C++ Programming
    Replies: 11
    Last Post: 10-09-2012, 07:14 PM
  2. getchar() not accepting 'ans' value
    By Zaheer Attar in forum C Programming
    Replies: 4
    Last Post: 09-10-2011, 01:42 PM
  3. accepting +123 help
    By peanut in forum C Programming
    Replies: 7
    Last Post: 11-01-2006, 11:48 PM
  4. ints and doubles problem
    By iLLiCiT in forum C Programming
    Replies: 1
    Last Post: 12-04-2004, 03:42 PM
  5. Replies: 17
    Last Post: 08-03-2004, 02:16 PM