1
static void Main(string[] args)2
{3
char[] trimChars = { ' ', 'e', 's' };4
string UserResponse = Console.ReadLine();5
UserResponse = UserResponse.ToLower();6
UserResponse = UserResponse.Trim(trimChars);7
Console.WriteLine(UserResponse);8
Console.ReadKey();9
}
浙公网安备 33010602011771号