From 0a99490d1f8a04fceaa8ef1d5e17551e291d0086 Mon Sep 17 00:00:00 2001 From: Weber Date: Wed, 21 Feb 2024 19:39:51 +0000 Subject: [PATCH] skuska --- cv1/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv1/program.c b/cv1/program.c index 90aa6e4..439375e 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -12,7 +12,7 @@ int main() { putchar(ch - 32); } else if (ch >= 'A' && ch <= 'Z') { putchar(ch + 32); - } else if (ch >= 32 && ch < 127) { + } else if ((ch >= 32 && ch < 127) || ch==9){ putchar(ch); } }