This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
515 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var
Symbol: char;
x: integer;
begin
repeat
write('Введите символ: ');
readln(Symbol);
case Symbol of
'a'..'z': writeln('Это маленькая английская буква');
'A'..'Z': writeln('Это большая английская буква');
'0'..'9': writeln('Это цифра');
'а'..'я': writeln('Это маленькая русская буква');
'А'..'Я': writeln('Это большая русская буква');
end;
until x=228
end.