#include <iostream> #include <string> #include <cctype> #include <cmath> using namespace std; int main() { // 获取实际十六进制的数据 string str; getline(cin, str); str = str.substr(2, str.size() - 2); // 创建最终结果与位标识 int res = 0, count = 0; // 由于字符串是高位在前低位在后,故反...