From 9a656f638624524c9a71144ebd849668de826c2b Mon Sep 17 00:00:00 2001 From: Kapliuk Date: Sat, 24 Feb 2024 23:03:43 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=BD=D0=BE=D0=B2=D0=B8=D1=82=D0=B8=20'c?= =?UTF-8?q?v1/program.c'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv1/program.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cv1/program.c b/cv1/program.c index 1ccdb07..d5814c0 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -12,7 +12,9 @@ int main(){ else if(i >= 'A' && i <= 'Z'){ i = i+32; } + if(i >= 32 && i <= 127){ putchar(i); + } } printf("\nLines count: %d\n", riadok); return 0;