HDU 1877 -又一版A+B
1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int m,a,b,sum; 6 char ch[50]; 7 while(cin>>m>>a>>b,m) 8 { 9 sum=a+b; 10 itoa(sum,ch,m); // 把一整数转换为字符串,即将sum转换为m进制数,,返回到ch字符串 11 cout<<ch<<endl; 12 } 13 return 0; 14 } 15