C 大小寫轉換

2021-08-28 17:57:31 字數 695 閱讀 7682

time limit: 1000 ms memory limit: 65536 kib

submit

statistic

problem description

x現在要學習英文以及各種稀奇古怪的字元的了。現在他想把一串字元中的小寫字母變成大寫字元,大寫字母變成小寫字母,其他的保持不變。

input

輸入有多組。

每組輸入乙個字串,長度不大於80,不包含空格。

output

輸出轉換後的字串

sample input

a*

b+

sample output

a*

b+

hint

source

zmx

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace test1

else if (a[i] >= 'a' && a[i] <= 'z')

}console.writeline(a);}}

}}

C 大小寫轉換

如果使用string類,可以使用 include裡的如下方法進行大小寫轉換 leetcode不支援這個函式 transform str.begin str.end str.begin tolower 記得 tolower前面有 而且是 tolower,不是 tolower 如果用char陣列,也可以...

大小寫轉換

小寫數值轉大寫 xieshuxu 傳入轉換字串 傳入整數單位 如 元 傳入小數點後一位單位 如 角 傳入小數點後兩位單位 如 分 public string xiaotoda string xiao,string one,string two,string tree if xiao.indexof ...

大小寫轉換

problem description x現在要學習英文以及各種稀奇古怪的字元的了。現在他想把一串字元中的小寫字母變成大寫字元,大寫字母變成小寫字母,其他的保持不變。input 輸入有多組。每組輸入乙個字串,長度不大於80,不包含空格。output 輸出轉換後的字串 sample input a b...