当想去一个范围内的数时,可对其进行取模运算(%)。
eg:对任意一个输入数,总是输出[0,3)范围内的数:
int nInput;
cin>>nInput;
cout<<nInput%3<<endl;
本文共 147 字,大约阅读时间需要 1 分钟。
当想去一个范围内的数时,可对其进行取模运算(%)。
eg:对任意一个输入数,总是输出[0,3)范围内的数:
int nInput;
cin>>nInput;
cout<<nInput%3<<endl;
转载于:https://blog.51cto.com/whatever957/1618851