C++ 程序来检查输入是整数还是字符串
由用户给出的输入,任务是检查该输入是整数还是字符串。
整数可以是 0 到 9 之间的任何数字组合,而字符串可以是除了 0 到 9 之外的任何组合。
示例
Input-: 123 Output-: 123 is an integer Input-: Tutorials Point Output-: Tutorials Point is a string
下面使用的方法如下 −
- 输入数据。
- 应用 isdigit() 函数,该函数检查给定的输入是否是数字字符。此函数带有一个整数参数,并返回一个 int 类型的值。
- 打印结果输出。
算法
Start Step 1->declare function to check if number or string bool check_number(string str) Loop For int i = 0 and i < str.length() and i++ If (isdigit(str[i]) == false) return false End End return true step 2->Int main() set string str = "sunidhi" IF (check_number(str)) Print " is an integer" End Else Print " is a string" End Set string str1 = "1234" IF (check_number(str1)) Print " is an integer" End Else Print " is a string" End Stop
示例
#include <iostream> using namespace std; //check if number or string bool check_number(string str) { for (int i = 0; i < str.length(); i++) if (isdigit(str[i]) == false) return false; return true; } int main() { string str = "sunidhi"; if (check_number(str)) cout<<str<< " is an integer"<<endl; else cout<<str<< " is a string"<<endl; string str1 = "1234"; if (check_number(str1)) cout<<str1<< " is an integer"; else cout<<str1<< " is a string"; }
输出
sunidhi is a string 1234 is an integer
广告