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년 전 | 421 | ||
| 7929 | 9년 전 | 346 | ||
| 7928 | 9년 전 | 437 | ||
| 7927 | 9년 전 | 354 | ||
| 7926 | 9년 전 | 673 | ||
| 7925 | 9년 전 | 374 | ||
| 7924 | 9년 전 | 352 | ||
| 7923 | 9년 전 | 357 | ||
| 7922 | 9년 전 | 392 | ||
| 7921 | 9년 전 | 408 | ||
| 7920 | 9년 전 | 327 | ||
| 7919 | 9년 전 | 341 | ||
| 7918 | 9년 전 | 496 | ||
| 7917 | 9년 전 | 348 | ||
| 7916 | 9년 전 | 422 | ||
| 7915 | 9년 전 | 418 | ||
| 7914 | 9년 전 | 433 | ||
| 7913 | 9년 전 | 595 | ||
| 7912 | 9년 전 | 438 | ||
| 7911 | 9년 전 | 378 | ||
| 7910 | 9년 전 | 419 | ||
| 7909 | 9년 전 | 522 | ||
| 7908 | 9년 전 | 445 | ||
| 7907 | 9년 전 | 390 | ||
| 7906 | 9년 전 | 410 | ||
| 7905 | 9년 전 | 385 | ||
| 7904 | 9년 전 | 371 | ||
| 7903 | 9년 전 | 362 | ||
| 7902 | 9년 전 | 569 | ||
| 7901 |
|
9년 전 | 751 | |
| 7900 | 9년 전 | 608 | ||
| 7899 | 9년 전 | 405 | ||
| 7898 | 9년 전 | 404 | ||
| 7897 | 9년 전 | 364 | ||
| 7896 | 9년 전 | 371 | ||
| 7895 | 9년 전 | 482 | ||
| 7894 | 9년 전 | 408 | ||
| 7893 | 9년 전 | 363 | ||
| 7892 | 9년 전 | 411 | ||
| 7891 | 9년 전 | 780 | ||
| 7890 | 9년 전 | 1206 | ||
| 7889 | 9년 전 | 755 | ||
| 7888 |
limsy1987
|
9년 전 | 558 | |
| 7887 | 9년 전 | 572 | ||
| 7886 | 9년 전 | 465 | ||
| 7885 | 9년 전 | 428 | ||
| 7884 | 9년 전 | 428 | ||
| 7883 | 9년 전 | 424 | ||
| 7882 | 9년 전 | 477 | ||
| 7881 | 9년 전 | 458 | ||
| 7880 | 9년 전 | 592 | ||
| 7879 | 9년 전 | 479 | ||
| 7878 | 9년 전 | 1236 | ||
| 7877 | 9년 전 | 767 | ||
| 7876 | 9년 전 | 504 | ||
| 7875 | 9년 전 | 578 | ||
| 7874 |
|
9년 전 | 819 | |
| 7873 | 9년 전 | 530 | ||
| 7872 | 9년 전 | 691 | ||
| 7871 | 9년 전 | 494 | ||
| 7870 | 9년 전 | 624 | ||
| 7869 | 9년 전 | 442 | ||
| 7868 | 9년 전 | 469 | ||
| 7867 | 9년 전 | 450 | ||
| 7866 | 9년 전 | 513 | ||
| 7865 | 9년 전 | 464 | ||
| 7864 | 9년 전 | 530 | ||
| 7863 | 9년 전 | 526 | ||
| 7862 | 9년 전 | 478 | ||
| 7861 | 9년 전 | 660 | ||
| 7860 | 9년 전 | 635 | ||
| 7859 | 9년 전 | 425 | ||
| 7858 | 9년 전 | 713 | ||
| 7857 | 9년 전 | 1094 | ||
| 7856 | 9년 전 | 541 | ||
| 7855 | 9년 전 | 766 | ||
| 7854 | 9년 전 | 736 | ||
| 7853 | 9년 전 | 598 | ||
| 7852 | 9년 전 | 527 | ||
| 7851 | 9년 전 | 525 | ||
| 7850 | 9년 전 | 597 | ||
| 7849 | 9년 전 | 372 | ||
| 7848 | 9년 전 | 431 | ||
| 7847 | 9년 전 | 673 | ||
| 7846 | 9년 전 | 467 | ||
| 7845 | 9년 전 | 435 | ||
| 7844 | 9년 전 | 408 | ||
| 7843 | 9년 전 | 431 | ||
| 7842 | 9년 전 | 416 | ||
| 7841 | 9년 전 | 395 | ||
| 7840 | 9년 전 | 415 | ||
| 7839 | 9년 전 | 443 | ||
| 7838 | 9년 전 | 524 | ||
| 7837 | 9년 전 | 370 | ||
| 7836 | 9년 전 | 413 | ||
| 7835 | 9년 전 | 487 | ||
| 7834 |
|
9년 전 | 1201 | |
| 7833 | 9년 전 | 452 | ||
| 7832 | 9년 전 | 433 | ||
| 7831 | 9년 전 | 581 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기