I have to write a program in Pascal which has to detect how many words on a text (input by the user) start with a certain letter. I can't use arrays, can you give me any hints as to where to start?
|
|
Thks all, the problem was solve =D. |
||
|
|
|
Off the top of my head - not tested
Why would you need an array or a case statement? |
||||||
|
|
|
(S) is your input string;
Note the minus one on the loop size. Also, remember that the very first letter of the string may be the one you want to match and that will not get picked up by the loop defined above. If you need to make your code smarter in that it can locate a specific letter rather than a hardcoded 't' then you can pass the requested character as a parameter to the function/procedure that your loop is in. |
||
|
|
|
|
count instances of SPACE LETTER plus first word if it matches. |
||
|
|
|
|
First thing to do is define the set of characters that constitute letters, or conversely which ones constitute non-letters. Write a function that takes a character and returns a boolean based on whether that character is a letter. Then loop through the string and call it for each character. When you detect a letter right after a non-letter or at the start of the string, increment your counter if it is the target letter. |
||
|
|
|
|
If you know which letter, you merely need to keep a counter, no need for arrays. If you don't know which letter, keep 26 counters. Stupid, but works as per your spec. |
||||||
|
