摘要:
package hmoework import "fmt" //&&:"与" ||:"或者" func clear(arr *[3][4]int) (array *[3][4]int) { for i := 0; i < len(arr); i++ { for j := 0; j < len((*a 阅读全文
posted @ 2022-03-11 17:22
零点漂移现象
阅读(203)
评论(0)
推荐(0)
摘要:
//go规定大写的方法名才能被导入 //随机生成10个整数(1-100的范围)保存到数组, // 并倒序打印 求平均值、最大值和最大值的下标、并查找里面是否有55 代码: package hmoework import ( "fmt" "math/rand" "time" ) //倒序打印方法 fu 阅读全文
posted @ 2022-03-11 14:32
零点漂移现象
阅读(32)
评论(0)
推荐(0)