반응형
// ex100_7.java
package java_algorithm;
import java.util.Scanner;
public class ex100_7 {
public static void main(String[] args) {
// TODO Auto-generated method stub
// 스캐닝(system.in)으로 작동하는 스캐너 객체 생성
Scanner sc = new Scanner(System.in);
// int i 변수에 다음에 적히는 nextint()정수를 담는다.
int i = sc.nextInt();
System.out.println(i);
}
}
반응형
'Projects > 자바 100제' 카테고리의 다른 글
자바 100제 12번 scanner nextline (0) | 2022.01.30 |
---|---|
자바 100제 11번 scanner nextline 응용 (0) | 2022.01.30 |
자바 100제 10번 scanner nextInt 응용 (0) | 2022.01.30 |
자바 100제 9번 scanner nextdouble (0) | 2022.01.30 |
자바 100제 8번 scanner nextLine (0) | 2022.01.30 |