模公式 2021-05-14 6 笔记 ```cpp #include using namespace std; int main(){ int a=5,b=7,k=3; cout<<(a*b)%k<<"///"<<((a%k)*(b%k))%k; cout<<(a+b)%k<<"///"<<((a%k)+(b%k))%k; } ``` 本文链接: https://shrinken.pw/crash-2021-05-14_35-fml.html