Skip to content

Commit 8847344

Browse files
authored
Update CountCharacter.java
1 parent 0e1ab89 commit 8847344

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

week01/basic/CountCharacter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class CountCharacter {
66

77
public static void main(String[] args) {
88
System.out.println("<문자 등장 횟수 세기>");
9-
// 9단계: 문자 등장 횟수 세기 (대소문자 무시)
9+
// 9단계(기초): 문자 등장 횟수 세기 (대소문자 무시)
1010
// 문제: 사용자로부터 문자열과 한 글자를 입력받아,
1111
// 문자열에서 해당 글자가 몇 번 등장하는지 출력하는 프로그램을 작성하세요.
1212
// (예: 문자열 "Hello World", 문자 'l' -> 3)
@@ -32,3 +32,4 @@ public static void main(String[] args) {
3232
}
3333

3434
}
35+

0 commit comments

Comments
 (0)