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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:59:07+00:00 2026-05-29T05:59:07+00:00

say I have: int lol; cout << enter a number(int): ; cin >> lol

  • 0

say I have:

int lol;
cout << "enter a number(int): ";
cin >> lol
cout << lol;

If I type 5 then it’ll cout 5. If I type fd it couts some numbers.
How can I specify the value, like say I only want it an int?

  • 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-29T05:59:08+00:00Added an answer on May 29, 2026 at 5:59 am

    If you type in fd it will output some numbers because those numbers are what lol happens to have in them before it gets assigned to. The cin >> lol doesn’t write to lol because it has no acceptable input to put in it, so it just leaves it alone and the value is whatever it was before the call. Then you output it (which is UB).

    If you want to make sure that the user entered something acceptable, you can wrap the >> in an if:

    if (!(cin >> lol)) {
        cout << "You entered some stupid input" << endl;
    }
    

    Also you might want to assign to lol before reading it in so that if the read fails, it still has some acceptable value (and is not UB to use):

    int lol = -1; // -1 for example
    

    If, for example, you want to loop until the user gives you some valid input, you can do

    int lol = 0;
    
    cout << "enter a number(int): ";
    
    while (!(cin >> lol)) {
        cout << "You entered invalid input." << endl << "enter a number(int): ";
        cin.clear();
        cin.ignore(numeric_limits<streamsize>::max(), '\n');
    }
    
    // the above will loop until the user entered an integer
    // and when this point is reached, lol will be the input number
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say have this immutable record type: public class Record { public Record(int x,
Let's say I have some templated class depending on type T . T could
Let's say I have an int that represents the number of rows in a
Let's say I have an int with the value of 1. How can I
Say i have this main int int main(); { cout << Hello! ; function1();
I need some input. Say you have an int-based Enum with values 1 through
Say I have some foo :: Maybe Int and I want to bind it
Let's say I have int a() { /* Tons of code ....*/ return someInt;
Let us say I have an array int aVar[10]; ... ... for(i=0; i<10; i++)
Say I have a class definition: class CustomClass { int member; }; Why is

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.