">#include <cctype> // 包含用于字符分类的标准库头文件 using namespace std; int main(){ string s; getline(cin,s);//直接cin会把空格吞掉 int l = 0, d = 0, o = 0; for (int i = 0; i < s.size(); i++) { if (s[i] == '?') { break; } else if (isalpha(s[i])) {//判断数字 l++; } else if (isdigit(s[i])) {//判断字母 d++; } else if (isp...