분류 전체보기
-
세차계산 2Java 2019. 4. 12. 17:36
import java.util.Scanner; public class GanjiEx02 { public static void main(String[] args) { String gan[] = "갑(甲),을(乙),병(丙),정(丁),무(戊),기(己),경(庚),신(辛),임(壬),계(癸)".split(","); String ji[] = "자(子),축(丑),인(寅),묘(卯),진(辰),사(巳),오(午),미(未),신(申),유(酉),술(戌),해(亥)".split(","); String color[] = "청(靑),청(靑),적(赤),적(赤),황(黃),황(黃),백(白),백(白),흑(黑),흑(黑)".split(","); String ddi[] = "쥐,소,호랑이,토끼,용,뱀,말,양,원숭이,닭,개,돼지".split(",");..
-
세차 계산1Java 2019. 4. 12. 17:29
public class GanjiEx01 { public static void main(String[] args) { String gan[] = "갑(甲),을(乙),병(丙),정(丁),무(戊),기(己),경(庚),신(辛),임(壬),계(癸)".split(","); String ji[] = "자(子),축(丑),인(寅),묘(卯),진(辰),사(巳),오(午),미(未),신(申),유(酉),술(戌),해(亥)".split(","); int gCount = 0; int jCount = 0; for(int i=0;i
-
음력달력 연습 3Java Script 2019. 2. 11. 17:26
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816..
-
음력달력 연습 2Java Script 2019. 2. 11. 17:24
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 Document //=========================================================================== // 윤년을 판단하는 함수 function isLeapYear(year) { return year % 400 == 0 || (year % 4 == 0 && y..
-
음력달력 연습 1Java Script 2019. 2. 11. 17:23
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 Document var year = moment().format("YYYY") * 1; var month = moment().format("MM") * 1; var date = moment().format("DD") * 1; document.writeln(moment().format("YYYY-MM-DD") + " "); document.writeln(getGanjiKor(year) + " "); document.writeln(g..
-
음력달력 jsJava Script 2019. 2. 11. 17:22
KimcLunar.js==========1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611..
-
둘러보기 0007Python 2019. 2. 11. 17:18
12345678910111213141516171819import platform print(platform.architecture())print(platform.machine())print(platform.node())print(platform.platform())print(platform.processor())print(platform.python_build())print(platform.python_compiler())print(platform.python_branch())print(platform.python_implementation())print(platform.python_revision())print(platform.python_version())print(platform.python_ver..
-
둘러보기 0006Python 2019. 2. 11. 17:17
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778"""넥슨 입사문제 중에서어떤 자연수 n이 있을 때, d(n)을 n의 각 자릿수 숫자들과 n 자신을 더한 숫자라고 정의하자.예를 들어d(91) = 9 + 1 + 91 = 101이 때, n을 d(n)의 제네레이터(generator)라고 한다. 위의 예에서 91은 101의 제네레이터이다.어떤 숫자들은 하나 이상의 제네레이터를 가지고 있는데, 101의 제네레이터는 91 뿐 아니라 100도 있다.그런데 반대로, 제네레이터가 없는 숫자들도 있으며, 이런 ..