코테/기타 (2) 썸네일형 리스트형 숫자 천단위에 ,(콤마) 찍기 1. StringBuilder 와 insert를 이용하여 public class main { public static String addComma(String number){ StringBuilder sb = new StringBuilder(number); int numberLength = number.length(); int commaCount = ( numberLength -1 ) /3; for(int i = 0, k=1; i 피보나치 수열 피보나치 수열이란 0, 1 , 1 , 2 , 3 , 5 , 8 , 13 , 21. . . . . . . 이때 n번째 있는 수열 구하기 12345678910111213141516public class Main { public static void main(String[] args) { System.out.println(piv(8)); } public static int piv(int n ){ if(n==1){ return 1; }else if(n==2){ return 1; }else { return piv(n - 1) + piv(n - 2); } }}Colored by Color Scriptercs 이전 1 다음