https://www.acmicpc.net/problem/10987
모음으로 미리 ArrayList를 만들어 놓고 contains로 확인하고 카운트를 올려준다.
public class Boj10987_모음의개수 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine();
List<Character> list = new ArrayList<>(Arrays.asList('a', 'e', 'i', 'o', 'u'));
int cnt = 0;
for (int i = 0; i < s.length(); i++) {
if (list.contains(s.charAt(i))) cnt++;
}
System.out.println(cnt);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 2745 진법변환 (Java) (0) | 2022.03.01 |
---|---|
백준 6359 만취한 상범 (0) | 2022.02.28 |
백준 2587 대표값2 (0) | 2022.02.28 |
백준 11720 숫자의 합 (0) | 2022.02.28 |
백준 1159 농구 경기 (0) | 2022.02.25 |