2979: 确定进制
摘要:```cpp
#include
#include
using namespace std;
int p,q,r,i;
int f(int y)
{
int sum=0,n=0;
……
C语言——题解 2979: 确定进制
摘要:解题思路:注意事项:参考代码:int jinzhi(int i,int n); //这个函数用于进制转换,按权展开再相加。int maxs(int a,int b,int c); /……