Created
June 28, 2024 20:08
-
-
Save injust90/7f940eaa1b4ceb1baebaa03da1540c53 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Exercise 1-13 Write a program to print a histogram of the lengths of words in its input. It is easy to draw the historgram with the bars horizontal, a vertical orientation is more challenging. | |
#include <stdio.h> | |
#define IN 1 | |
#define OUT 0 | |
int main() | |
{ | |
int c; | |
int wordCount = 0; | |
int state = OUT; | |
while ((c = getchar()) != EOF) | |
{ | |
if (c >= 'a' && c <= 'z') | |
{ | |
wordCount += 1; | |
state = IN; | |
putchar(c); | |
} | |
else if (c == ' ' || c == '\n' || c == '\t') | |
{ | |
if (state == IN) | |
{ | |
printf(": "); | |
for (int i = 0; i < wordCount; ++i) | |
{ | |
printf("+"); | |
} | |
wordCount = 0; | |
state = OUT; | |
printf("\n"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment