题解 | #大小写转换#
大小写转换
http://www.nowcoder.com/practice/4e089ee8966a4ed4b306f64e68d45264
using System; class Program{ static void Main(){ String s; while((s=Console.ReadLine())!=null){ Console.WriteLine(s.ToLower()); } } }
大小写转换
http://www.nowcoder.com/practice/4e089ee8966a4ed4b306f64e68d45264
using System; class Program{ static void Main(){ String s; while((s=Console.ReadLine())!=null){ Console.WriteLine(s.ToLower()); } } }
相关推荐