1047 Student List for Course (25 分) Zhejiang University has 40,000 students and provides 2,500 courses. Now given the registered course list of each student, you are supposed to output the student name lists of all the courses. Input Specification:…
1. Go String型 Unicode是一种字符集,code point UTF8是unicode的存储实现,转换为字节序列的规则 go的rune类型 可以取出字符串里的unicode 字符串是一个不可改变的字节序列. Go string通常是用来包含人类可读的文本. 文本字符串通常被解释为采用 UTF8 编码的 Unicode 码点. Go的字符串由单个字节连接起来. package main func main() { var city string = "我爱北京天安门" p…