大小寫轉換 --- C++在線編程練習

將字符串中的大寫字母轉換成小寫字母

class Solution {
public:
    string toLowerCase(string str) {
        int strLength = str.size();
        for(int iloop1 = 0; iloop1 <= strLength-1 ;iloop1++){
            if('A' <= str[iloop1] && 'Z' >= str[iloop1]){
                str[iloop1] += 32;
            }
        }
        return str;
    }
};

string stringToString(string input) {
    assert(input.length() >= 2);
    string result;
    for (int i = 1; i < input.length() -1; i++) {
        char currentChar = input[i];
        if (input[i] == '\\') {
            char nextChar = input[i+1];
            switch (nextChar) {
                case '\"': result.push_back('\"'); break;
                case '/' : result.push_back('/'); break;
                case '\\': result.push_back('\\'); break;
                case 'b' : result.push_back('\b'); break;
                case 'f' : result.push_back('\f'); break;
                case 'r' : result.push_back('\r'); break;
                case 'n' : result.push_back('\n'); break;
                case 't' : result.push_back('\t'); break;
                default: break;
            }
            i++;
        } else {
          result.push_back(currentChar);
        }
    }
    return result;
}

int main() {
    string line;
    while (getline(cin, line)) {
        string str = stringToString(line);
        
        string ret = Solution().toLowerCase(str);

        string out = (ret);
        cout << out << endl;
    }
    return 0;
}

運行結果

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章