#include <string> #include <algorithm> #include <cctype> // old <ctype.h> struct ToLower { char operator() (char c) const { return std::tolower(c); } ...
確定! 回上一頁