本帖最后由 毕影彬 于 2012-10-22 17:51 编辑
public static String add(String s1 , String s2){
//此处该如何实现
return "";
}
public static void main(String[] args){
String s1 = "123456789";
String s2 = "987654321";
String result = add(s1,s2);
System.out.print(result);
}
问题:
1.以上程序中,要求将两个字符串整数相加后,返回一个String的结果,如何实现
2.程序中,不能使用BigInteger数据结构,要求自己设计实现
|