1. 拆数字串 一个数字串可以被拆成多个子数字串,求可以被3整除(0也可以被3整除)的子数字串的最大个数。 测试样例: 输入:12345 = 12 + 3 + 45 输出:3 思路:从左到右依次处理,注意这种情况: 输入:12346 = 12 + 3 + 6 输出:3 (要把4去除) 测试代码中应该没有 221, 1723271 这样的例子。 #include <iostream> #include <string> using namespace std; int main() { // input ...