Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,988 questions

51,933 answers

573 users

How to check whether a user enters a number or a word in C++

1 Answer

0 votes
#include <iostream>
#include <cctype> 

int main() {
    std::cout << "Please enter a number or a word: ";
    std::cout.flush(); // clear the input stream (cin) as preparation for the next input 

    std::cin >> std::ws; // skip the leading whitespace include newline
    int ch = std::cin.peek(); // retrieve the next character from the stream without consuming it

    if (ch == EOF) {
        return 1;
    }

    if (std::isdigit(ch)) {
        int n;
        std::cin >> n;
        std::cout << "You entered the number: " << n << '\n';
    } else {
        std::string str;
        std::cin >> str;
        std::cout << "You entered the word: " << str << '\n';
    }
}
  
  
 
/*
run1:
 
Please enter a number or a word: 324534
You entered the number: 324534


run2:
 
Please enter a number or a word: c++
You entered the word: c++

*/

 



answered Nov 22, 2024 by avibootz
edited Nov 22, 2024 by avibootz
...