목록IT/Java (40)
이야기앱 세상
double num = 123.623656; //반올림System.out.println(Math.round(num)); //반올림String pattern = "0.###";DecimalFormat df = new DecimalFormat(pattern); System.out.println(df.format(num)); //반올림BigDecimal bd = new BigDecimal(String.valueOf(num));BigDecimal result = null; result = bd.setScale(2, BigDecimal.ROUND_DOWN); //내림System.out.println(result); result = bd.setScale(3, BigDecimal.ROUND_HALF_UP); //반올..
재귀호출(recursive call)는 메서드 내부에서 자기 자신 메서드를 호출하는 것이다. 팩토리얼(factorial)은 한 숫자가 1일 될 때까지 1씩 감소시켜가면서 계속 곱하는 것을 의미한다. f(n) = n * f(n-1) 이며 f(1) = 1 이 된다. 재귀호출을 이용하면 쉽게 팩토리얼을 구할 수 있다. -------------------------------------------------------------------------- class DoFactorial{ public static long makeFact(int n){ long result = 0; if(n == 1){ result = 1; }else{ result = n * makeFact(n-1); } return result;..
Vector를 이용한 로또 예제--------------------------------import java.util.Collections; import java.util.Random; import java.util.Vector;public class VectorLotto { public static void main(String[] args){ Vector vc = new Vector(); Random ran = new Random(); Integer ir = null; while(vc.size()
HashSet를 이용한 로또 만들기 ------------------------------- package dr03.random; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Random; import java.util.Set; public class LottoHashSet { Set vc; public LottoHashSet(){ vc = new HashSet(); this.doLotto(); this.printLotto(); } public void doLotto(){ Random ra = new Random(); Intege..
배열을 이용한 로또 프로그램 만들기 ----------------------------------- package dr03.random; import java.util.Arrays; public class LottoArray { int[] lotto = new int[6]; public LottoArray(){ this.doLotto(); this.printLotto(); } // 로또 숫자 만들기 public void doLotto(){ for(int i=0;i
1. 글을 작성하면 작성한 날 하루 동안 new 표시하기 java.text.SimpleDateFormat sf = new java.text.SimpleDateFormat("yyyy-MM-dd");String inputDate = sf.format(입력된 날짜);String now = sf.format(new java.util.Date());String mark = "";if(inputDate.equals(now)){ mark = "new";} 2. 글을 작성한 후 지정한 기간동안 new 표시하기 java.util.Date date = 글이 작성된 날짜long now = System.currentTimeMillis();long inputDate = date.getTime();String mark = "";..
여러명의 성적을 처리하는 예제입니다. -------------------------------------------------------------------- public class Score { public static void main(String[] args){ // 성적 int[][]score={ {96,85,30}, {40,95,65}, {70,50,30}, {60,79,50}, {90,20,40} }; double[] avg = new double[score.length]; //평균 int[][] data = new int[score.length][4]; //0총점1최대2최소3등수 System.out.println("순번\t국어\t영어\t수학\t총점\t평균\t최대\t최소\t등수"); for(..
국어, 영어, 수학 성적을 입력할 때 0 ~ 100 범위의 데이터만 인정하고 입력된 성적에 대해 총점, 평균, 학점 출력하는 예제 ----------------------- import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Score{ public static void main(String[] ar){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); char grade = 0; float avg = 0.0f; String title[] = new String[]{"국어","영어","수..