본문 바로가기

전체 글72

[백준 4344] 평균은 넘겠지 출처 : https://www.acmicpc.net/problem/4344 소스코드 public class Q4344 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int caseCnt = Integer.parseInt(br.readLine());//테스트 케이스의 개수 int sNum;//학생 수 int[] arr;//학생의 점수 저장용 배열 int sum = 0;//합계, 평균 int avg = 0; int overNum = 0;//평균을 넘은 학생수 /* * 테스트 케이스.. 2019. 1. 23.
[백준 1546] 평균 출처 : https://www.acmicpc.net/problem/1546 소스코드 public class Q1546 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; double max = 0; int n = Integer.parseInt(br.readLine()); double[] arr = new double[n]; st = new StringTokenizer(br.readLine()); for(int i=0; imax) { max = arr[i]; } } double sum.. 2019. 1. 23.
[백준 4673] 셀프넘버 출처 : https://www.acmicpc.net/problem/4673 소스코드 public class Q4673 { static int[] checker = new int[10001]; public static void main(String[] args) { for(int i=1; i 2019. 1. 22.
[백준 11718] 그대로 출력하기 출처 : https://www.acmicpc.net/problem/11718 소스코드 public class Q11718 { public static void main(String[] args) { Scanner in = new Scanner(System.in); String str; while(in.hasNextLine()) { str = in.nextLine(); System.out.println(str); } } } 그냥 공백비교해서 처리하면 런타임 에러가 뜬다몇번 고치면서 계속 안되길래 검색을 해보니nextLine()을 쓸 경우 다음 줄 입력에 대해 NoSuchElementException 을 신경써줘야 했다.이 부분은 while의 조건문에 hasNextLine() 을 사용해 처리해주었다흠...요.. 2019. 1. 22.