//五个式一个循环 //每次都拿5的倍数,位数是1 4 6,拿不了的话就是尾数6,等于拿了1,自己试试就知道了 #include<bits/stdc++.h> using namespace std; int main(){ int t, n; while (cin >> t){ while (t--){ cin >> n; switch (n % 5){ case 1:cout << "niu" << endl...