We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e1ab89 commit 8847344Copy full SHA for 8847344
1 file changed
week01/basic/CountCharacter.java
@@ -6,7 +6,7 @@ public class CountCharacter {
6
7
public static void main(String[] args) {
8
System.out.println("<문자 등장 횟수 세기>");
9
- // 9단계: 문자 등장 횟수 세기 (대소문자 무시)
+ // 9단계(기초): 문자 등장 횟수 세기 (대소문자 무시)
10
// 문제: 사용자로부터 문자열과 한 글자를 입력받아,
11
// 문자열에서 해당 글자가 몇 번 등장하는지 출력하는 프로그램을 작성하세요.
12
// (예: 문자열 "Hello World", 문자 'l' -> 3)
@@ -32,3 +32,4 @@ public static void main(String[] args) {
32
}
33
34
35
+
0 commit comments