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년 전 | 397 | ||
| 7929 | 9년 전 | 314 | ||
| 7928 | 9년 전 | 406 | ||
| 7927 | 9년 전 | 326 | ||
| 7926 | 9년 전 | 657 | ||
| 7925 | 9년 전 | 340 | ||
| 7924 | 9년 전 | 328 | ||
| 7923 | 9년 전 | 333 | ||
| 7922 | 9년 전 | 367 | ||
| 7921 | 9년 전 | 394 | ||
| 7920 | 9년 전 | 312 | ||
| 7919 | 9년 전 | 330 | ||
| 7918 | 9년 전 | 484 | ||
| 7917 | 9년 전 | 323 | ||
| 7916 | 9년 전 | 398 | ||
| 7915 | 9년 전 | 396 | ||
| 7914 | 9년 전 | 403 | ||
| 7913 | 9년 전 | 557 | ||
| 7912 | 9년 전 | 405 | ||
| 7911 | 9년 전 | 352 | ||
| 7910 | 9년 전 | 397 | ||
| 7909 | 9년 전 | 497 | ||
| 7908 | 9년 전 | 411 | ||
| 7907 | 9년 전 | 356 | ||
| 7906 | 9년 전 | 377 | ||
| 7905 | 9년 전 | 354 | ||
| 7904 | 9년 전 | 341 | ||
| 7903 | 9년 전 | 339 | ||
| 7902 | 9년 전 | 547 | ||
| 7901 |
|
9년 전 | 726 | |
| 7900 | 9년 전 | 568 | ||
| 7899 | 9년 전 | 365 | ||
| 7898 | 9년 전 | 377 | ||
| 7897 | 9년 전 | 329 | ||
| 7896 | 9년 전 | 349 | ||
| 7895 | 9년 전 | 458 | ||
| 7894 | 9년 전 | 374 | ||
| 7893 | 9년 전 | 323 | ||
| 7892 | 9년 전 | 372 | ||
| 7891 | 9년 전 | 751 | ||
| 7890 | 9년 전 | 1186 | ||
| 7889 | 9년 전 | 741 | ||
| 7888 |
limsy1987
|
9년 전 | 539 | |
| 7887 | 9년 전 | 533 | ||
| 7886 | 9년 전 | 421 | ||
| 7885 | 9년 전 | 393 | ||
| 7884 | 9년 전 | 398 | ||
| 7883 | 9년 전 | 392 | ||
| 7882 | 9년 전 | 434 | ||
| 7881 | 9년 전 | 424 | ||
| 7880 | 9년 전 | 547 | ||
| 7879 | 9년 전 | 447 | ||
| 7878 | 9년 전 | 1205 | ||
| 7877 | 9년 전 | 738 | ||
| 7876 | 9년 전 | 470 | ||
| 7875 | 9년 전 | 546 | ||
| 7874 |
|
9년 전 | 797 | |
| 7873 | 9년 전 | 509 | ||
| 7872 | 9년 전 | 662 | ||
| 7871 | 9년 전 | 471 | ||
| 7870 | 9년 전 | 596 | ||
| 7869 | 9년 전 | 420 | ||
| 7868 | 9년 전 | 429 | ||
| 7867 | 9년 전 | 408 | ||
| 7866 | 9년 전 | 476 | ||
| 7865 | 9년 전 | 439 | ||
| 7864 | 9년 전 | 503 | ||
| 7863 | 9년 전 | 498 | ||
| 7862 | 9년 전 | 459 | ||
| 7861 | 9년 전 | 616 | ||
| 7860 | 9년 전 | 608 | ||
| 7859 | 9년 전 | 398 | ||
| 7858 | 9년 전 | 693 | ||
| 7857 | 9년 전 | 1058 | ||
| 7856 | 9년 전 | 506 | ||
| 7855 | 9년 전 | 729 | ||
| 7854 | 9년 전 | 720 | ||
| 7853 | 9년 전 | 570 | ||
| 7852 | 9년 전 | 499 | ||
| 7851 | 9년 전 | 491 | ||
| 7850 | 9년 전 | 575 | ||
| 7849 | 9년 전 | 351 | ||
| 7848 | 9년 전 | 401 | ||
| 7847 | 9년 전 | 637 | ||
| 7846 | 9년 전 | 444 | ||
| 7845 | 9년 전 | 401 | ||
| 7844 | 9년 전 | 384 | ||
| 7843 | 9년 전 | 401 | ||
| 7842 | 9년 전 | 389 | ||
| 7841 | 9년 전 | 374 | ||
| 7840 | 9년 전 | 390 | ||
| 7839 | 9년 전 | 425 | ||
| 7838 | 9년 전 | 507 | ||
| 7837 | 9년 전 | 343 | ||
| 7836 | 9년 전 | 390 | ||
| 7835 | 9년 전 | 460 | ||
| 7834 |
|
9년 전 | 1184 | |
| 7833 | 9년 전 | 409 | ||
| 7832 | 9년 전 | 404 | ||
| 7831 | 9년 전 | 544 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기