取模运算
也就是求余数。
比如 10/3=3.....1,那么求出来的模就是 1。
#include <iostream>
using namespace std;
int main()
{
//取模
cout << 10 % 3 << endl;
cout << 10 % 20 << endl;
system("pause");
return 0;
}
结果:(环境:Windows11(arm/Apple M VM)/Visual Studio 2022/Debug/arm64)
1
10
注意:取模是除法。所以,除数不可以为 0!!
c++中,小数不可以取模运算!!
总结:只有整型才可以取模运算。
:-)