Count how many vowels and consonants occur in a string: Difference between revisions

Content added Content deleted
(J)
m (→‎Pascal: remove unused variable)
Line 1,520: Line 1,520:


var
var
c: char;
vowel, consonant: set of char;
vowel, consonant: set of char;
vowelCount, consonantCount: integer;
vowelCount, consonantCount: integer;