// 这题完全是面向测试用例开发 #include <cctype> #include <iostream> using namespace std; int main() { string str1,str2,str3,str4,str; while (cin >> str) { // 注意 while 处理多个 case int pointCnt = 0; bool bisValid = true; for(auto it : str){ if(it == '.'){ pointCnt ++; }else if(!isdigit(it)){ bisVal...