c++中怎么判断一个string类型的字符串变量是否为数字
展开全部
遍历每个字符,判断是否在'0'--'9'就好
#include <iostream>
#include <string>
using namespace std;
bool strisnum(string& s)
{
string::iterator it;
for (it = s.begin(); it < s.end(); ++it)
{
if (*it<'0' || *it>'9')
return false;
}
return true;
}
int main()
{
string s;
cout << "请输入:";
cin >> s;
if (strisnum(s))
cout << "是数字" << endl;
else
cout << "不是数字" << endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询