在以下代码中:func PrimeF(n uint64) {var i,t uint64 = 2,3for ; i < n; { if n%i == 0 { n /= i } }}为什么我会收到错误消息:“t 已声明但未使用”? 查看完整描述