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년 전 | 400 | ||
| 7929 | 9년 전 | 319 | ||
| 7928 | 9년 전 | 410 | ||
| 7927 | 9년 전 | 328 | ||
| 7926 | 9년 전 | 660 | ||
| 7925 | 9년 전 | 344 | ||
| 7924 | 9년 전 | 331 | ||
| 7923 | 9년 전 | 336 | ||
| 7922 | 9년 전 | 369 | ||
| 7921 | 9년 전 | 395 | ||
| 7920 | 9년 전 | 315 | ||
| 7919 | 9년 전 | 330 | ||
| 7918 | 9년 전 | 486 | ||
| 7917 | 9년 전 | 324 | ||
| 7916 | 9년 전 | 399 | ||
| 7915 | 9년 전 | 399 | ||
| 7914 | 9년 전 | 407 | ||
| 7913 | 9년 전 | 566 | ||
| 7912 | 9년 전 | 412 | ||
| 7911 | 9년 전 | 360 | ||
| 7910 | 9년 전 | 402 | ||
| 7909 | 9년 전 | 500 | ||
| 7908 | 9년 전 | 416 | ||
| 7907 | 9년 전 | 360 | ||
| 7906 | 9년 전 | 381 | ||
| 7905 | 9년 전 | 358 | ||
| 7904 | 9년 전 | 349 | ||
| 7903 | 9년 전 | 341 | ||
| 7902 | 9년 전 | 552 | ||
| 7901 |
|
9년 전 | 727 | |
| 7900 | 9년 전 | 575 | ||
| 7899 | 9년 전 | 371 | ||
| 7898 | 9년 전 | 378 | ||
| 7897 | 9년 전 | 331 | ||
| 7896 | 9년 전 | 351 | ||
| 7895 | 9년 전 | 461 | ||
| 7894 | 9년 전 | 382 | ||
| 7893 | 9년 전 | 325 | ||
| 7892 | 9년 전 | 378 | ||
| 7891 | 9년 전 | 753 | ||
| 7890 | 9년 전 | 1188 | ||
| 7889 | 9년 전 | 741 | ||
| 7888 |
limsy1987
|
9년 전 | 542 | |
| 7887 | 9년 전 | 538 | ||
| 7886 | 9년 전 | 423 | ||
| 7885 | 9년 전 | 396 | ||
| 7884 | 9년 전 | 398 | ||
| 7883 | 9년 전 | 396 | ||
| 7882 | 9년 전 | 440 | ||
| 7881 | 9년 전 | 431 | ||
| 7880 | 9년 전 | 551 | ||
| 7879 | 9년 전 | 451 | ||
| 7878 | 9년 전 | 1208 | ||
| 7877 | 9년 전 | 745 | ||
| 7876 | 9년 전 | 472 | ||
| 7875 | 9년 전 | 552 | ||
| 7874 |
|
9년 전 | 800 | |
| 7873 | 9년 전 | 509 | ||
| 7872 | 9년 전 | 666 | ||
| 7871 | 9년 전 | 473 | ||
| 7870 | 9년 전 | 598 | ||
| 7869 | 9년 전 | 427 | ||
| 7868 | 9년 전 | 431 | ||
| 7867 | 9년 전 | 413 | ||
| 7866 | 9년 전 | 478 | ||
| 7865 | 9년 전 | 441 | ||
| 7864 | 9년 전 | 506 | ||
| 7863 | 9년 전 | 502 | ||
| 7862 | 9년 전 | 461 | ||
| 7861 | 9년 전 | 620 | ||
| 7860 | 9년 전 | 611 | ||
| 7859 | 9년 전 | 403 | ||
| 7858 | 9년 전 | 694 | ||
| 7857 | 9년 전 | 1066 | ||
| 7856 | 9년 전 | 512 | ||
| 7855 | 9년 전 | 739 | ||
| 7854 | 9년 전 | 724 | ||
| 7853 | 9년 전 | 571 | ||
| 7852 | 9년 전 | 500 | ||
| 7851 | 9년 전 | 497 | ||
| 7850 | 9년 전 | 578 | ||
| 7849 | 9년 전 | 354 | ||
| 7848 | 9년 전 | 405 | ||
| 7847 | 9년 전 | 643 | ||
| 7846 | 9년 전 | 449 | ||
| 7845 | 9년 전 | 407 | ||
| 7844 | 9년 전 | 386 | ||
| 7843 | 9년 전 | 405 | ||
| 7842 | 9년 전 | 390 | ||
| 7841 | 9년 전 | 376 | ||
| 7840 | 9년 전 | 395 | ||
| 7839 | 9년 전 | 428 | ||
| 7838 | 9년 전 | 510 | ||
| 7837 | 9년 전 | 347 | ||
| 7836 | 9년 전 | 393 | ||
| 7835 | 9년 전 | 465 | ||
| 7834 |
|
9년 전 | 1186 | |
| 7833 | 9년 전 | 418 | ||
| 7832 | 9년 전 | 407 | ||
| 7831 | 9년 전 | 552 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기