65,186
社区成员




]#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
string str="JIuyIUhjkHUY";
transform(str.begin(),str.end(),str.begin(),tolower);
cout<<str;
return 0;
}
#include <cctype>
void IniReader::string_lower(string& str)
{
for (string::size_type i=0; i!=str.size();++i)
{
str[i] = tolower(str[i]);
}
}