Aktualizovat a1/program.c
This commit is contained in:
parent
eb0cc577fb
commit
ac29e24a59
@ -23,12 +23,12 @@ int main()
|
|||||||
|
|
||||||
if (islower(vstup) != 0)
|
if (islower(vstup) != 0)
|
||||||
{
|
{
|
||||||
toupper(putchar(vstup));
|
putchar(toupper(vstup));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isupper(vstup) != 0)
|
if (isupper(vstup) != 0)
|
||||||
{
|
{
|
||||||
tolower(putchar(vstup));
|
putchar(tolower(vstup));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (iscntrl(vstup) != 0)
|
if (iscntrl(vstup) != 0)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user