JAVA 자료실

System 창에서 입력 받기

페이지 정보

작성자 최고관리자 작성일 70-01-01 09:00 조회 322 댓글 0

본문

[code=php]
import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);
System.out.print("정수를 입력하세요 : ");
int i = sc.nextInt();
System.out.println("입력된 정수는 : " + i + "입니다.");
sc.close();
}
}
[/code]


[code=php]
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class Main {

public static void main(String[] args) {

File file = new File("input.txt");
try {
Scanner sc = new Scanner(file);
while (sc.hasNextInt()) {
System.out.println(sc.nextInt());
}
sc.close();
} catch (FileNotFoundException e) {
System.out.println("파일을 읽어오는 동안에 오류가 발생하였습니다.");
}
}
}
[/code]

댓글목록 0

등록된 댓글이 없습니다.

알림 0