10. Lower or Upper C#
Здравейте,
може ли помощ за тази задача и по-точно за ползването на "ToLower" и "ToUpper", когато имаме тип чар? Опитвам се да направя if проверка, за да проверя за "главна" или за "малка" буква след четенето на "firstChar", но при добавянето на който и да е от двата метода програмата се чупи.
Write a program that prints whether a given character is upper-case or lower case.
Input: L
Output:upper-case
Input: f
Output:lower-case
using System;
namespace DataExecise
{
class MainClass
{
public static void Main(string[] args)
{
char firstChar = char.Parse(Console.ReadLine());
if(firstChar==firstChar.ToLower) {
Console.WriteLine("lower-case");
}
else if(firstChar==firstChar.ToUpper) {
Console.WriteLine("upper-case");
}
}
}
}
Thanks for sharing, I found a lot of interesting information here. A really good post, very thankful and helpful walgreenslistens.