將字串轉換為大寫string類有乙個名為toupper的靜態方法。 您可使用此方法將字串轉換為大寫。例如:
string lower = "converted from lowercase";
console.writeline(lower.toupper());
將字串轉換為小寫tolower方法與toupper方法相反。tolower將字串轉換為小寫。例如:
string upper = "converted from uppercase";
console.writeline(upper.tolower());
c 字串大小寫轉換
c 字串大小寫轉換 將字串轉換為大寫string類有乙個名為toupper的靜態方法。您可使用此方法將字串轉換為大寫。例如 string lower converted from lowercase console.writeline lower.toupper 將字串轉換為小寫tolower方法與...
大小寫轉換 字串
time limit 1000ms memory limit 65536kb problem description 把乙個字串裡所有的大寫字母換成小寫字母,小寫字母換成大寫字母。其他字元保持不變。input 輸入為一行字串,其中不含空格。長度不超過80個字元。output 輸出轉換好的字串。exa...
c 字串的大小寫轉換
目錄 string 字串的大小寫轉換 include include transform函式 include includeusing namespace std int main transform函式的作用是 將某操作應用於指定範圍的每個元素。transform函式有兩個過載版本 transfo...