美文网首页
Go小项目-大写字母

Go小项目-大写字母

作者: c4a1d989518e | 来源:发表于2018-03-16 13:55 被阅读14次

    项目描述

    计算出输入的字符串中大写字母的数目

    运行结果

    项目代码

    代码为

    package main
    //这个函数的作用就是找出字符串中大写字母的数目
    import (
        "fmt"
        "strings"
    )
    
    func main() {
        var input string
        fmt.Scanf("%s\n", &input)
        answer := 1
        for _, ch := range input {
            str := string(ch)
            if strings.ToUpper(str) == str {
                answer++
            }
        }
        fmt.Println(answer)
    }
    
    

    相关文章

      网友评论

          本文标题:Go小项目-大写字母

          本文链接:https://www.haomeiwen.com/subject/vrrhqftx.html