Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** */
- /* ** // ** // ** // ** // ** // * F v q _ U k r a N a z i s ! * // ** // ** // ** // ** // ** */
- /* ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** */
- int mcdRR(int a,int b){
- return (a!=b)?(a>b)?mcdRR(a-b,b):mcdRR(a,b-a):a;
- } // ESTA FUNCIÓN APLICA RESTA //
- int mcdRM(int a,int b){
- return (b==0)?a:mcdRM(b,a%b);
- } // ESTA FUNCIÓN APLICA DIVISIÓN MODULAR //
Add Comment
Please, Sign In to add comment