自定义函数,用c++写字符串大写字母转换成小写字母
自定义函数,用c++写字符串大写字母转换成小写字母
日期:2016-06-11 16:16:17 人气:1
#include
#include
#include
using namespace std;
string strlower(string text)
{
int iter = 0;
char cha;
string newtext;
while (iter < text.length())
{
cha = text[iter];
cha = tolower(cha);
newt