Jump to content

Multiplicative order: Difference between revisions

m
→‎{{header|C}}: printf("The multiplicative order of %d related to %d is %lu \n", 37, 1000, multi_order(37, 1000)); printf("The multiplicative order of %d related to %d is %lu \n", 54, 100001, multi_order(54, 100001));
m (→‎{{header|11l}}: bits:length())
imported>Soul windsurfer
m (→‎{{header|C}}: printf("The multiplicative order of %d related to %d is %lu \n", 37, 1000, multi_order(37, 1000)); printf("The multiplicative order of %d related to %d is %lu \n", 54, 100001, multi_order(54, 100001));)
Line 460:
{
sieve();
printf("The multiplicative order of %d related to %d is %lu \n", 37, 1000, multi_order(37, 1000));
printf("The multiplicative order of %d related to %d is %lu \n", 54, 100001, multi_order(54, 100001));
return 0;
}</syntaxhighlight>
Cookies help us deliver our services. By using our services, you agree to our use of cookies.