go实现“水仙花数”

题目:

打印出100-999中所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字
立方和等于该数本身。例如:153 是一个“水仙花数”,因为 153=1 的三次
方+5 的三次方+3 的三次方

我使用的是Go Modules 管理依赖方式引入下面的add包就可以了运行了

package add
import (
    "fmt"
    "strconv"
)
func Sxhs() {
    var str string 
    fmt.Scanf("%s", &str)
    var result = 0
    fmt.Printf("%d \n", result)
    for i := 0; i < len(str); i++ {
        num := int(str[i] - '0') //字符串本身是ascii码 
        result += (num * num * num)
    }
    number, err := strconv.Atoi(str)
    if err != nil {
        fmt.Printf("can not convert %s to int\n", str)
        return
    }
    if result == number {
        fmt.Printf("%d is shuixinhuashuo\n", number)
    } else {
        fmt.Printf("%d is  not shuixinhuashuo\n", number)
    }
}

image.png

为何这样写?
num := int(str[i] - '0') //字符串本身是ascii码
num:=int(49-48)// 就得到了 ‘1’,因为是byte类型要强转

image.png

你可能感兴趣的:(golang)