반응형
설명
한 개의 문자열을 입력받고, 특정 문자를 입력받아 해당 특정문자가 입력받은 문자열에 몇 개 존재하는지 알아내는 프로그램을 작성하세요.
대소문자를 구분하지 않습니다.문자열의 길이는 100을 넘지 않습니다.
입력
첫 줄에 문자열이 주어지고, 두 번째 줄에 문자가 주어진다.
문자열은 영어 알파벳으로만 구성되어 있습니다.
출력
첫 줄에 해당 문자의 개수를 출력한다.
예시 입력 1
Computercooler
c
예시 출력 1
2
풀이
public class Find {
public int solution(String sentence, char text){
char[] characters = sentence.toCharArray();
int count = 0;
for(char alphabet:characters){
if(alphabet==text){
count++;
}
}
return count;
}
public static void main(String[] args) {
Find find = new Find();
Scanner scan = new Scanner(System.in);
System.out.println("please type your sentence");
String sentence = scan.nextLine().toLowerCase();
System.out.println("sentence = " + sentence);
System.out.println("please type your alphabet");
char text = scan.next().charAt(0);
System.out.println("text = " + text);
System.out.println(find.solution(sentence,text));
}
}
반응형
'자료구조 | 알고리즘 > 문제' 카테고리의 다른 글
[JAVA] 문자열 - 문장 속 단어 (1) | 2022.09.24 |
---|---|
[JAVA] 문자열 - 대소문자 변환 (0) | 2022.09.23 |
[JAVA]프로그래머스 Lv1.약수의 개수와 덧셈 (0) | 2021.05.21 |
[JAVA]프로그래머스 Lv1. 음양 더하기 (0) | 2021.05.21 |
[JAVA]백준 2752 번 : 세 수 정렬 (0) | 2020.07.09 |
댓글