JAVA 입력, 출력
2018. 3. 10. 16:56ㆍ개발노트
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("정수를 입력하세요."); int i = sc.nextInt(); System.out.println("입력된 정수는 "+ i + "입니다."); sc.close(); } } | cs |
Scanner 을 사용해서 사용자로 부터 i 값을 받아와서
문자열을 출력한다.
파일 읽어오기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 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); System.out.println("정수를 입력하세요."); while(sc.hasNextInt()) { System.out.println(sc.nextInt() * 100); } sc.close(); } catch (FileNotFoundException e) { System.out.println("파일을 읽어오는 도중에 오류가 발생했습니다."); } } } | cs |
프로젝트 파일에 input.txt파일을 만들어 주고 값을 넣어줘야 실행이 가능합니다.