모음과 자음을 모두 확인해야 하지만 대문자와 소문자를 모두 확인하는 것을 잊지 마세요.
모음 수를 세는 경우 "aeiou" 문자를 별도로 확인합니다. 즉,
if (myStr[i] == 'a' || myStr[i] == 'e' || myStr[i] == 'i' || myStr[i] == 'o' || myStr[i] == 'u' || myStr[i] == 'A' || myStr[i] == 'E' || myStr[i] == 'I' || myStr[i] == 'O' || myStr[i] == 'U') {
vowel_count++;
} 자음을 세려면 elseif 조건에서 다른 문자를 확인하십시오 -
else if ((myStr[i] >= 'a' && myStr[i] <= 'z') || (myStr[i] >= 'A' && myStr[i] <= 'Z')) {
cons_count++;
} 예시
다음은 문자열에서 모음과 자음의 개수를 세는 코드입니다.
using System;
public class Demo {
public static void Main() {
string myStr;
int i, len, vowel_count, cons_count;
myStr = "Jack Sparrow";
vowel_count = 0;
cons_count = 0;
// find length
len = myStr.Length;
for(i=0; i<len; i++) {
if(myStr[i] =='a' || myStr[i]=='e' || myStr[i]=='i' || myStr[i]=='o' || myStr[i]=='u' || myStr[i]=='A' || myStr[i]=='E' || myStr[i]=='I' || myStr[i]=='O' || myStr[i]=='U') {
vowel_count++;
} else if((myStr[i]>='a' && myStr[i]<='z') || (myStr[i]>='A' && myStr[i]<='Z')) {
cons_count++;
}
}
Console.Write("\nVowel in the string: {0}\n", vowel_count);
Console.Write("Consonant in the string: {0}\n\n", cons_count);
}
} 출력
Vowel in the string: 3 Consonant in the string: 8