다음은 대화형 모드(interactive mode)에서 진법 변환(radix conversion)하는 Io 소스 코드이다.
메뉴는 주메뉴 Command: (S)et radix, (A)bout, (Q)uit or E(x)it
와 부메뉴 SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit
로 구성되어 있으며, 진법 변환의 핵심은
string fromBase(radix) // 소스 코드의 40째 쥴 참조
string toBase(radix) // 소스 코드의 41째 쥴 참조
이며, 지원되는 진법은 2진법에서 36진법 까지이다.
- /*
- * Filename: convertRadix.io
- * Convert radix in a interactive mode.
- *
- * Execute: io convertRadix.io
- *
- * Date: 2008/05/01
- * Author: PH Kim [ pkim (AT) scripts.pe.kr ]
- */
- printUsage := method(
- writeln("Usage: groovy convertRadix.groovy")
- writeln("Convert radix in a interactive mode, where the maximum radix is 36.")
- )
- printAbout := method(
- writeln(" About: Convert radix in a interactive mode.")
- )
- printMainMenu := method(
- writeln(" Command: (S)et radix, (A)bout, (Q)uit or E(x)it")
- )
- printMainPrompt := method(
- write(" Prompt> ")
- )
- printSubMenu := method(srcRadix, destRadix,
- writeln(" Convert Radix_#{srcRadix} to Radix_#{destRadix}" interpolate)
- writeln(" SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit")
- )
- printSubPrompt := method(
- write(" Input Value>> ")
- )
- convertRadix := method(s, srcRdx, destRdx,
- ret := " "
- e := try (
- val := s fromBase(srcRdx)
- ret = val asString toBase(destRdx) asUppercase
- return( ret )
- )
- e catch(Exception,
- writeln(" Error: The input string cantains some invalid character.")
- ret = "????"
- )
- return( ret asMutable uppercase )
- )
- doConvert := method( stdin, srcRadix, destRadix,
- line := ""
- cmd := ""
- srcStr := ""
- destStr := ""
- writeln("")
- printSubMenu(srcRadix, destRadix)
- while (true,
- printSubPrompt()
- cmd = stdin readLine
- if ("main()" == cmd) then (
- return
- ) elseif ("exit()" == cmd or "quit()" == cmd) then (
- exit(1)
- )
- e2 := try (
- cmd fromBase(srcRadix)
- srcStr = cmd
- destStr = convertRadix(srcStr, srcRadix, destRadix)
- writeln(" ( " .. srcStr .. " )_" .. srcRadix .. " ---> ( " .. destStr .. " )_" .. destRadix)
- writeln("")
- )
- e2 catch (Exception,
- writeln(" Conversion Exception" )
- writeln("")
- )
- )
- )
- doStart := method(
- line := ""
- cmd := ""
- srcRadix := 10
- destRadix := 10
- srcStr := ""
- destStr := ""
- onlyOnce := true
- stdin := File standardInput
- while (true,
- writeln("")
- if (onlyOnce) then (
- writeln(" The supported maximum radix is 36.")
- onlyOnce = false
- )
- printMainMenu()
- printMainPrompt()
- cmd = stdin readLine
- if ("qQxX" findSeq(cmd) != nil and cmd size == 1) then (
- exit(0)
- ) elseif ("aA" findSeq(cmd) != nil and cmd size == 1) then (
- printAbout()
- ) elseif ("sS" findSeq(cmd) != nil and cmd size == 1) then (
- write(" Input the source and target radices (say, 16 2): ")
- line := stdin readLine
- tokens := line split(" ", "\t", ",")
- while (tokens size < 2,
- write(" Input the source and target radices (say, 16 2): ")
- line = stdin readLine
- tokens = line split(" ", "\t", ",")
- )
- srcRadix = tokens at(0) asNumber
- destRadix = tokens at(1) asNumber
- doConvert(stdin, srcRadix, destRadix)
- )
- )
- )
- // Begin here
- if (args size > 1 and "-h" == args at(1)) then (
- printUsage()
- exit(1)
- )
- doStart()
실행> io convertRadix.io
The supported maximum radix is 36.
Command: (S)et radix, (A)bout, (Q)uit or E(x)it
Prompt> s
Input the source and target radices (say, 16 2): 16 2
Convert Radix_16 to Radix_2
SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit
Input Value>> 1FF
( 1FF )_16 ---> ( 111111111 )_2
Input Value>> main()
Command: (S)et radix, (A)bout, (Q)uit or E(x)it
Prompt> S
Input the source and target radices (say, 16 2): 2 8
Convert Radix_2 to Radix_8
SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit
Input Value>> 1011001
( 1011001 )_2 ---> ( 131 )_8
Input Value>> main()
Command: (S)et radix, (A)bout, (Q)uit or E(x)it
Prompt> x
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
'프로그래밍 > Io' 카테고리의 다른 글
7비트 ASCII 코드표 만들기 예제 with Io (0) | 2008.05.02 |
---|---|
진법(radix) 표 만들기 예제 with Io (0) | 2008.05.01 |
황금비율(golden ratio) 구하기 with Io (0) | 2008.04.15 |
현재 시각 알아내기 for Io (0) | 2008.04.07 |
조립제법(Horner의 방법) 예제 for Io (0) | 2008.04.07 |