public class Solution { public string ToLowerCase(string s) { string result=string.Empty; for(int i=0;i<s.Length;i++) { if('A'<=s[i] ...
確定! 回上一頁