forked from Raksha1906/DS-Algo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// CPP program to check if a given string | ||
// is a valid integer | ||
#include <iostream> | ||
using namespace std; | ||
|
||
// Returns true if s is a number else false | ||
bool isNumber(string s) | ||
{ | ||
for (int i = 0; i < s.length(); i++) | ||
if (isdigit(s[i]) == false) | ||
return false; | ||
|
||
return true; | ||
} | ||
|
||
// Driver code | ||
int main() | ||
{ | ||
// Saving the input in a string | ||
string str = "6790"; | ||
|
||
// Function returns 1 if all elements | ||
// are in range '0-9' | ||
if (isNumber(str)) | ||
cout << "Integer"; | ||
|
||
// Function returns 0 if the input is | ||
// not an integer | ||
else | ||
cout << "String"; | ||
} |