本文主要是介绍每日OJ题_牛客OR59_字符串中找出连续最长的数字串,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
牛客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;
}
这篇关于每日OJ题_牛客OR59_字符串中找出连续最长的数字串的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!