这应该是一个非常基本的东西,但不知何故我没有看到问题。
#include <iostream>
template <int dim>
inline
void
i2c(const int & ind, int & i, int &j) {
i = (int) ind / dim;
j = ind & dim;
//j = ind - i*dim;
}
static const int dim = 2;
int main() {
int i,j;
for (unsigned int c = 0; c < dim*dim; c++) {
i2c<dim>(c,i,j);
std::cout<<c<<"/"<<dim<<"="<<i<<"; "<<c<<"&"<<dim<<"="<<j<<std::endl;
}
return 0;
}
这是代码。
输出是:
0/2=0; 0&2=0
1/2=0; 1&2=0
2/2=1; 2&2=2
3/2=1; 3&2=2
如果我使用j = ind - i*dim
- 一切都好。
EDIT1:有人可以删除这个问题,这样我就不会因为失明而感到羞耻吗?;)