高精度
摘要:对于大数的加减乘除,不会JAVA,只会用C来模拟HDU-1002-A+B Problem IIhttp://acm.hdu.edu.cn/showproblem.php?pid=1002简单的大数相加,用字符串模拟即可#include<stdio.h>
#include<string.h>
#include<stdlib.h>
char s1[1005],s2[1005];
int s[1200];
int max(int x,int y)
{ return x>y?x:y;
}
int main()
{ int i,temp,t,k; int len
阅读全文
posted @ 2012-06-30 23:02