#include
Int n, r, count;
Void print (int x)
{
If (x & lt;=9)
Printf (" % d ", x);
The else
Printf (" % c ", x - 10 + 'A');
}
Void change (int n, int r)
{
If (n)
{
Change (n/r, r);
Print (n % r);
}
}
Int main ()
{
The scanf (" % d % d ", & amp; N, & amp; R);
Change (n, r);
return 0;
} in change (n/r, r);
Print (n % r); What's the meaning of, a great god answer
CodePudding user response:
Print (n % r); Print is a custom function and parameter is of type int, n % r is the result as an argument passed to the parameter; N % r assigned to the results of xCodePudding user response:
Well, thank you, excuse me chang (n/r, r) what meaning beCodePudding user response: