

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to check if an input is an integer using C/C++?
Here we will see how to check whether a given input is integer string or a normal string. The integer string will hold all characters that are in range 0 – 9. The solution is very simple, we will simply go through each characters one by one, and check whether it is numeric or not. If it is numeric, then point to the next, otherwise return false value.
Example
#include <iostream> using namespace std; bool isNumeric(string str) { for (int i = 0; i < str.length(); i++) if (isdigit(str[i]) == false) return false; //when one non numeric value is found, return false return true; } int main() { string str; cout << "Enter a string: "; cin >> str; if (isNumeric(str)) cout << "This is a Number" << endl; else cout << "This is not a number"; }
Output
Enter a string: 5687 This is a Number
Output
Enter a string: 584asS This is not a number
- Related Questions & Answers
- C++ Program to check if input is an integer or a string
- How to check if a variable is an integer in JavaScript?
- How to check if an array contains integer values in JavaScript ?
- How to check if input is numeric in C++?
- How do I check to see if a value is an integer in MySQL?
- How do I check if raw input is integer in Python 3?
- How to check if a C/C++ string is an int?
- How to check if an alert exists using WebDriver?
- How to check if an URL is valid or not using Java?
- How to check if an image is displayed on page using Selenium?
- C Program to check if an array is palindrome or not using Recursion
- How to check multiple regex patterns against an input? Using Java.
- Check if an array is stack sortable in C++
- How to check if an input string contains a specified substring in JSP?
- How to check if an element is visible with WebDriver?
Advertisements