Golang 程序读取数字 (n) 并计算 (n+nn+nnn)
让我们读一个数字,n=5
然后,nn=55然后nnn=555
res=5+55+555=>615
要读取数字(n)并计算(n+nn+nnn),我们可以采用以下方法
脚步
定义一个变量,n。
打印一条语句以获取数字n。
获取变量n的用户输入。
为(n+nn+nnn)做一个表达式。
将表达式转换为数字。
计算表达式的总和。
示例
package main import ( "fmt" "strconv" ) func main(){ var n int fmt.Print("输入n的值: ") fmt.Scanf("%d", &n) t1 := fmt.Sprintf("%d", n) t2 := fmt.Sprintf("+%d%d", n, n) t3 := fmt.Sprintf("+%d%d%d", n, n, n) exp := t1 + t2 + t3 fmt.Println("表达式为: ", exp) n1, _ := strconv.Atoi(t1) n2, _ := strconv.Atoi(t2) n3, _ := strconv.Atoi(t3) fmt.Println("Computed 表达式为: ", n1+n2+n3) }输出结果
输入n的值: 5 表达式为: 5+55+555 Computed 表达式为: 615