728x90
728x90
Q. 특정 문자 개수 찾기
import java.util.Scanner;
public class findChar {
public int solution(String str, char t) {
int answer = 0;
str = str.toUpperCase();
t = Character.toUpperCase(t);
for(char x : str.toCharArray()) {
if(x == t) answer++;
}
return answer;
}
public static void main(String[] args){
findChar T = new findChar();
Scanner kb = new Scanner(System.in);
String str = kb.next();
char c = kb.next().charAt(0);
System.out.print(T.solution(str, c));
}
}
728x90
728x90
'프로그래밍 > 알고리즘' 카테고리의 다른 글
2) 대소문자 변환 with JAVA (0) | 2023.11.10 |
---|