devops-exercises/topics/shell/count_chars.md
abregman 99c4e02ecf Rename exercises dir
Name it instead "topics" so it won't be
strange if some topics included "exercises" directory.
2022-08-02 01:53:56 +03:00

12 lines
253 B
Markdown

## Count Chars
### Objectives
1. Read input from the user until you get empty string
2. For each of the lines you read, count the number of characters and print it
### Constraints
1. You must use a while loop
2. Assume at least three lines of input