function jsConvertNumberToHangul( varNum )
{
// 리턴할 문자열
var returnStr = "" ;
// 음수일 때는 에러
if ( eval(varNum) < 0 ) {
return returnStr ;
}
// 넘어온 숫자를 문자로 변환
var numLen = varNum.length ;
// 변환된 문자를 앞에서 부터 한자씩 잘라서 보관할 변수
var oneChar = null ;
var isDone1 = true ;
var isDone2 = true ;
var isDone3 = true ;
var isDone4 = true ;
var isDone5 = false ;
for ( var inx = 0 ; inx < numLen ; inx++ ) {
oneChar = varNum.substring( inx, inx+1 ) ;
isDone5 = false ;
if ( oneChar == "0" ) {
// 아무일도 안함
} else if ( oneChar == "1" ) {
returnStr = returnStr + "일" ;
isDone5 = true ;
} else if ( oneChar == "2" ) {
returnStr = returnStr + "이" ;
isDone5 = true ;
} else if ( oneChar == "3" ) {
returnStr = returnStr + "삼" ;
isDone5 = true ;
} else if ( oneChar == "4" ) {
returnStr = returnStr + "사" ;
isDone5 = true ;
} else if ( oneChar == "5" ) {
returnStr = returnStr + "오" ;
isDone5 = true ;
} else if ( oneChar == "6" ) {
returnStr = returnStr + "육" ;
isDone5 = true ;
} else if ( oneChar == "7" ) {
returnStr = returnStr + "칠" ;
isDone5 = true ;
} else if ( oneChar == "8" ) {
returnStr = returnStr + "팔" ;
isDone5 = true ;
} else if ( oneChar == "9" ) {
returnStr = returnStr + "구" ;
isDone5 = true ;
}
if ( ((numLen-inx) % 4) == 0 && oneChar != "0" ) {
returnStr = returnStr + "천" ;
} else if ( ((numLen-inx) % 4) == 3 && oneChar != "0" ) {
returnStr = returnStr + "백" ;
} else if ( ((numLen-inx) % 4) == 2 && oneChar != "0" ) {
returnStr = returnStr + "십" ;
} else if ( ((numLen-inx) % 4) == 1 ) {
if ( numLen >= 17 && isDone1 && isDone5 ) {
returnStr = returnStr + "경" ;
isDone1 = false ;
} else if ( numLen >= 13 && isDone2 && isDone5 ) {
returnStr = returnStr + "조" ;
isDone2 = false ;
} else if ( numLen >= 9 && isDone3 && isDone5 ) {
returnStr = returnStr + "억" ;
isDone3 = false ;
} else if ( numLen >= 5 && isDone4 && isDone5 ) {
returnStr = returnStr + "만" ;
isDone4 = false ;
}
}
}
return returnStr ;
}
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 404 | ||
| 7929 | 9년 전 | 323 | ||
| 7928 | 9년 전 | 414 | ||
| 7927 | 9년 전 | 329 | ||
| 7926 | 9년 전 | 662 | ||
| 7925 | 9년 전 | 347 | ||
| 7924 | 9년 전 | 335 | ||
| 7923 | 9년 전 | 337 | ||
| 7922 | 9년 전 | 374 | ||
| 7921 | 9년 전 | 395 | ||
| 7920 | 9년 전 | 319 | ||
| 7919 | 9년 전 | 332 | ||
| 7918 | 9년 전 | 487 | ||
| 7917 | 9년 전 | 324 | ||
| 7916 | 9년 전 | 401 | ||
| 7915 | 9년 전 | 401 | ||
| 7914 | 9년 전 | 410 | ||
| 7913 | 9년 전 | 569 | ||
| 7912 | 9년 전 | 415 | ||
| 7911 | 9년 전 | 363 | ||
| 7910 | 9년 전 | 404 | ||
| 7909 | 9년 전 | 503 | ||
| 7908 | 9년 전 | 421 | ||
| 7907 | 9년 전 | 365 | ||
| 7906 | 9년 전 | 389 | ||
| 7905 | 9년 전 | 366 | ||
| 7904 | 9년 전 | 350 | ||
| 7903 | 9년 전 | 343 | ||
| 7902 | 9년 전 | 559 | ||
| 7901 |
|
9년 전 | 728 | |
| 7900 | 9년 전 | 579 | ||
| 7899 | 9년 전 | 375 | ||
| 7898 | 9년 전 | 380 | ||
| 7897 | 9년 전 | 336 | ||
| 7896 | 9년 전 | 357 | ||
| 7895 | 9년 전 | 463 | ||
| 7894 | 9년 전 | 385 | ||
| 7893 | 9년 전 | 332 | ||
| 7892 | 9년 전 | 387 | ||
| 7891 | 9년 전 | 759 | ||
| 7890 | 9년 전 | 1188 | ||
| 7889 | 9년 전 | 743 | ||
| 7888 |
limsy1987
|
9년 전 | 543 | |
| 7887 | 9년 전 | 544 | ||
| 7886 | 9년 전 | 432 | ||
| 7885 | 9년 전 | 400 | ||
| 7884 | 9년 전 | 402 | ||
| 7883 | 9년 전 | 397 | ||
| 7882 | 9년 전 | 446 | ||
| 7881 | 9년 전 | 433 | ||
| 7880 | 9년 전 | 558 | ||
| 7879 | 9년 전 | 457 | ||
| 7878 | 9년 전 | 1211 | ||
| 7877 | 9년 전 | 746 | ||
| 7876 | 9년 전 | 478 | ||
| 7875 | 9년 전 | 555 | ||
| 7874 |
|
9년 전 | 802 | |
| 7873 | 9년 전 | 516 | ||
| 7872 | 9년 전 | 669 | ||
| 7871 | 9년 전 | 476 | ||
| 7870 | 9년 전 | 601 | ||
| 7869 | 9년 전 | 432 | ||
| 7868 | 9년 전 | 437 | ||
| 7867 | 9년 전 | 420 | ||
| 7866 | 9년 전 | 482 | ||
| 7865 | 9년 전 | 447 | ||
| 7864 | 9년 전 | 511 | ||
| 7863 | 9년 전 | 506 | ||
| 7862 | 9년 전 | 462 | ||
| 7861 | 9년 전 | 628 | ||
| 7860 | 9년 전 | 618 | ||
| 7859 | 9년 전 | 406 | ||
| 7858 | 9년 전 | 699 | ||
| 7857 | 9년 전 | 1069 | ||
| 7856 | 9년 전 | 514 | ||
| 7855 | 9년 전 | 747 | ||
| 7854 | 9년 전 | 726 | ||
| 7853 | 9년 전 | 576 | ||
| 7852 | 9년 전 | 504 | ||
| 7851 | 9년 전 | 500 | ||
| 7850 | 9년 전 | 581 | ||
| 7849 | 9년 전 | 355 | ||
| 7848 | 9년 전 | 409 | ||
| 7847 | 9년 전 | 647 | ||
| 7846 | 9년 전 | 451 | ||
| 7845 | 9년 전 | 411 | ||
| 7844 | 9년 전 | 388 | ||
| 7843 | 9년 전 | 409 | ||
| 7842 | 9년 전 | 394 | ||
| 7841 | 9년 전 | 381 | ||
| 7840 | 9년 전 | 404 | ||
| 7839 | 9년 전 | 431 | ||
| 7838 | 9년 전 | 515 | ||
| 7837 | 9년 전 | 353 | ||
| 7836 | 9년 전 | 394 | ||
| 7835 | 9년 전 | 470 | ||
| 7834 |
|
9년 전 | 1189 | |
| 7833 | 9년 전 | 421 | ||
| 7832 | 9년 전 | 410 | ||
| 7831 | 9년 전 | 556 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기