hdu 1877 又一版 A+B 水题

又一版 A+B

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 13785    Accepted Submission(s): 5251


Problem Description
输入两个不超过整型定义的非负10进制整数A和B(<=2 31-1),输出A+B的m (1 < m <10)进制数。



 

Input
输入格式:测试输入包含若干测试用例。每个测试用例占一行,给出m和A,B的值。
当m为0时输入结束。
 

Output
输出格式:每个测试用例的输出占一行,输出A+B的m进制数。
 

Sample Input
 
   
8 1300 48 2 1 7 0
 

Sample Output
 
   
2504 1000
 

Author
ZJU
 

Source
浙大计算机研究生复试上机考试-2008年  
水题,就是要注意一个小细节。两个数的和有可能为零,为零的时候,特殊考虑。
代码如下:
#include
int s[10000100];
int m;
void switch1(int a,int b)
{
    int count=0;
    a=a+b;
    if(!a)
	{
		printf("0\n");
		return ;
	} 
    while(a>0)
    {
        s[count++]=a%m;
        a/=m;
    }
    for(int i=count-1;i>=0;--i)
    printf("%d",s[i]);
    puts("");
}
int main()
{
    int a,b;//此处不用用64 位的题上已经说过了是32位进制范围内的数字
    while(~scanf("%d",&m),m)
    {
        scanf("%d%d",&a,&b);
        switch1(a,b);    
    }
    return 0;
} 


你可能感兴趣的:(水题之实数型精度问题)