Thread: system crash when char is entered during int switch? solution?

  1. #1
    Registered User
    Join Date
    Jul 2012
    Posts
    21

    system crash when char is entered during int switch? solution?

    i noticed when i have a switch statement the default does not catch chars...
    here is a sample-

    Code:
    int input;
    cin>>input;
    
    switch(input)
    {
    
    case 1:
    statement;
    break;
    
    case 2:
    statement;
    break;
    
    case 3:
    statement;
    break;
    
    default:
    cout<<"cant do that\n";
    break;
    
    }
    im guessing this is because the switch statement is only taking ints, but is there a way I can prevent a system crash if myself or someone accidentally inputs a char rather than an int?

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Check with:
    Code:
    if (cin >> input)
    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

  3. #3
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    How to deal with invalid input from std::cin: RPG troubles
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  4. #4
    Registered User
    Join Date
    Jul 2012
    Posts
    21
    sweet, thanks!! currently hit a wall in my programming learning journey, will return with many questions after some good sleep

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. comparing an entered value to a char
    By hawaiian_girl in forum C Programming
    Replies: 3
    Last Post: 10-21-2010, 05:28 PM
  2. solution to a linear system of equations
    By e4321 in forum C++ Programming
    Replies: 4
    Last Post: 01-15-2009, 09:00 PM
  3. What does system crash mean?
    By alyeska in forum C++ Programming
    Replies: 4
    Last Post: 10-06-2007, 03:53 AM
  4. loop freak out when char entered
    By cerin in forum C++ Programming
    Replies: 7
    Last Post: 04-02-2005, 02:31 AM
  5. declared int but entered a char
    By lockpatrick in forum C Programming
    Replies: 6
    Last Post: 05-01-2002, 10:42 AM