From 9ac43be03d6e0e5786fe41fb8adc9af4244be9c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Ut=C4=BE=C3=A1k?= Date: Wed, 21 Feb 2024 14:17:07 +0000 Subject: [PATCH] Update 'cv1/program.c' --- cv1/program.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/cv1/program.c b/cv1/program.c index 9b80a82..b82efe2 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -1,5 +1,4 @@ #include -#define TAB_WIDTH 7 int main() { int text; @@ -9,21 +8,19 @@ int main() { if (text == '\n') { lines_count++; } else if (text == '\t') { - for (int i = 0; i < TAB_WIDTH; i++) { - putchar(' '); - } + putchar('\t'); continue; } else if (text >= 'a' && text <= 'z') { - text = text - 'a' + 'A'; + putchar(text - 'a' + 'A'); } else if (text >= 'A' && text <= 'Z') { - text = text - 'A' + 'a'; + putchar(text - 'A' + 'a'); } else if (text < 32 || text == 127) { continue; + } else { + putchar(text); } - - putchar(text); } printf("\nLines count: %d\n", lines_count); return 0; -} +} \ No newline at end of file