摘要: 1 int to_int(std::string& strInput) 2 { 3 int nReturn = 0; 4 std::stringstream ss; 5 ss << strInput; 6 ss >> nReturn; 7 return nReturn; 8 } 9 int getN 阅读全文
posted @ 2025-06-17 15:27 冥天笑 阅读(11) 评论(0) 推荐(0)