Aktualizovat a1/program.c

This commit is contained in:
Tomáš Vlček 2026-02-20 23:57:36 +00:00
parent 17e21a122c
commit 70f3bc4f57

View File

@ -26,7 +26,7 @@ int main()
{ {
putchar(tolower(vstup)); putchar(tolower(vstup));
} }
else if (vstup >= 32 && vstup <= 128) else if (vstup >= 32 && vstup <= 126)
{ {
putchar(vstup); putchar(vstup);
} }