We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d3373a commit d56ff19Copy full SHA for d56ff19
1 file changed
src/codeup100/c1011.java
@@ -5,7 +5,7 @@ public static void main(String[] args) {
5
Scanner sc = new Scanner(System.in);//Scanner 객체생성
6
//System.out.println("문자 입력 : ");
7
char a = sc.next().charAt(0); //사용자로부터 입력 받기
8
- System.out.println(a);//출력
+ System.out.println(a);//출력
9
sc.close();//입력 종료 후 Scanner 닫기
10
}
11
-}
+}
0 commit comments