Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace DataExecise
- {
- class MainClass
- {
- public static void Main(string[] args)
- {
- char firstChar = char.Parse(Console.ReadLine());
- if(Char.IsLower(firstChar))
- {
- Console.WriteLine("lower-case");
- }
- else if(Char.IsUpper(firstChar))
- {
- Console.WriteLine("upper-case");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement