#include using namespace std; int main() { int n,m,a[10000],j,i;i=0; cin>>n>>m; while(n) { a[i]=n%m; n=n/m; i++; } 任意进制的转换,不能转换小数