当想去一个范围内的数时,可对其进行取模运算(%)。

eg:对任意一个输入数,总是输出[0,3)范围内的数:

int nInput;

cin>>nInput;

cout<<nInput%3<<endl;