目录
牛客OR59 字符串中找出连续最长的数字串
解析代码
牛客OR59 字符串中找出连续最长的数字串
字符串中找出连续最长的数字串_牛客题霸_牛客网
解析代码
#include <iostream>
#include <cctype>
using namespace std;
int main()
{
string str, tmp = "", ret = "";
cin >> str;
for (int i = 0; i <= str.size(); ++i)
{
if (isdigit(str[i]))
{
tmp += str[i];
}
else
{
if (tmp.size() > ret.size())
{
ret = tmp;
}
tmp = "";
}
}
cout << ret;
return 0;
}