其他分享
首页 > 其他分享> > go_统计字符串汉字,九九乘法表

go_统计字符串汉字,九九乘法表

作者:互联网

统计hello沙河小王子的中文字符个数

package main

import (
	"fmt"
	"unicode"
)

func main() {
	s := "hello沙河小王子"
	var cnt int
	for _, v := range s {
		// if unicode.Is(unicode.Han, v) {
		if unicode.In(v, unicode.Han) {
			cnt++
		}
	}
	fmt.Println(cnt)
}

unicode的Is 和 In 都能
https://studygolang.com/pkgdoc

99乘法表

package main

import (
	"fmt"
)

func main() {
	for i := 1; i < 10; i++ {
		for j := 1; j <= i; j++ {
			fmt.Printf("%d*%d=%d ", i, j, i*j)
		}
		fmt.Println()
	}
}

两个for循环。

标签:cnt,九九乘法,Han,fmt,字符串,unicode,go,import,main
来源: https://www.cnblogs.com/ydssx7/p/15810280.html