본문 바로가기

짱구 굴리기 (Q) - 52

[백준 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.
[백준 2675] 문자열 반복 출처 : https://www.acmicpc.net/problem/2675 반복문을 사용하는 쉬운 문제였습니다 소스코드 public class Q2675 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int cnt = Integer.parseInt(br.readLine()); int a = 0; String str = ""; for(int i=0; i 2019. 1. 19.