int gcd(int x,int y){ int temp=0; while(y) { temp=y; y=x%y; x=temp; } return x;} void convert(int x,int target){ stack data; while(x) { data.push(x%target); x/=target; } cout<<<"进制为 "; while(!data.empty()) { cout<
本文共 305 字,大约阅读时间需要 1 分钟。
int gcd(int x,int y){ int temp=0; while(y) { temp=y; y=x%y; x=temp; } return x;} void convert(int x,int target){ stack data; while(x) { data.push(x%target); x/=target; } cout<<<"进制为 "; while(!data.empty()) { cout<
转载于:https://my.oschina.net/kkkkkkkkkkkkk/blog/675418