一、转化成小写字母
实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。
示例 1:
输入: “Hello”`
输出: “hello”
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/to-lower-case
#include<iostream>
#include<string>
using namespace std;
class Solution {
public:
string toLowerCase(string str) {
cin >> str;
for (int i = 0; i<str.size(); i++)
{
if (str[i] >= 'A'&&str[i] <= 'Z')
{
str[i] = str[i] + 32;
}
}
return str;
}
};
int main