因此,我编写了这个小型go程序,该程序向图灵机提供指令,并从中打印选定的单元格:

    package main

import "fmt"
import s "strings"

func main() {
  fmt.Println(processturing("> > > + + + . ."));
}

func processturing(arguments string) string{
    result := ""
    dial := 0
    cells := make([]int, 30000)
    commands := splitstr(arguments, " ")
    for i := 0;i<len(commands);i++ {
        switch commands[i] {
        case ">":
            dial += 1
        case "<":
            dial -= 1
        case "+":
            cells[dial] += 1
        case "-":
            cells[dial] -= 1
        case ".":
            result += string(cells[dial]) + " "
        }
    }
    return result
}

//splits strings be a delimeter
func splitstr(input, delim string) []string{
    return s.Split(input, delim)
}

问题是,运行此命令时,控制台不显示任何内容。它什么也没显示。如何使该函数对我的函数产生的字符串进行fmt.println

最佳答案

表达方式

 string(cells[dial])

产生整数值cells[dial]的UTF-8表示形式。打印带引号的字符串输出以查看发生了什么:
    fmt.Printf("%q\n", processturing("> > > + + + . .")) // prints "\x03 \x03 "

我认为您想要整数的十进制表示形式:
 strconv.Itoa(cells[dial])

playground example

10-06 06:53