본문 바로가기

전체 글98

[JAVA] BOJ_2741 주제 : N 찍기 문제 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. 입력 첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다. 출력 첫째 줄부터 N번째 줄 까지 차례대로 출력한다. 예제 입력 1 복사 5 예제 출력 1 복사 1 2 3 4 5 import java.io.*; public class BOJ_2741 { public static void main(String[] args) { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));.. 2019. 11. 22.
개발 참고 사이트 1. [완료] codecademy : https://www.codecademy.com/learn/learn-java Java Tutorial: Learn Java Basics For Free | Codecademy Utilize our Java tutorial to learn the basics of the popular language, including Java objects, in this introductory course. www.codecademy.com 2. [진행중] opentutorials : https://opentutorials.org/course/1223 Java - 생활코딩 본 수업은 2013년에 제작된 수업으로 2019년에 제작된 JAVA1 수업으로 대체 되고 있습니다. 자바로 .. 2019. 11. 20.
[JAVA] Exception Handling 1. Common Exceptions ArithmeticException: Something went wrong during an arithmetic operation; for example, division by zero. NullPointerException: You tried to access an instance variable or invoke a method on an object that is currently null. ArrayIndexOutOfBoundsException: The index you are using is either negative or greater than the last index of the array (i.e., array.length-1). FileNotFou.. 2019. 11. 20.
How to Form New Habits That Matter How to Form New Habits That Matter (11/05), 어떻게 중요한 새로운 습관을 만드는가. https://link.medium.com/qh5M2SVAm1 How to Form New Habits That Matter “We are what we repeatedly do. Excellence, then, is not an act, but a habit.” forge.medium.com “We are what we repeatedly do. Excellence, then, is not an act, but a habit.” 2019. 11. 19.
Looking at Cute Animals Online Is Literally Good for Your Brain Looking at Cute Animals Online Is Literally Good for Your Brain (11/05), 귀여운 동물을 컴퓨터로 보는 것이 뇌에 도움을 준다. https://onezero.medium.com/looking-at-cute-animals-online-is-literally-good-for-your-brain-2eaa291d8568 Looking At Cute Animals Online Is Literally Good for Your Brain And definitely better than porn or even reading, according to one researcher onezero.medium.com It might seem like a frivolous .. 2019. 11. 19.