1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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()*100); } sc.close(); } ca..