求n*m的网格中有多少九宫格,公式:(n/3)*(m/3)。
代码:
1 #include<iostream> 2 3 using namespace std; 4 5 int main() 6 { 7 int n, m; 8 int t; 9 cin >> t; 10 while(t--) 11 { 12 cin >> n >> m; 13 cout << (n/3)*(m/3) << endl; 14 } 15 return 0; 16 }