摘要: Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-negative. 1 public static string MultiplyStrings(string num1, string num2) 2 { 3 if (num1.Length == 0 || num2.Length == 0) 4 ... 阅读全文
posted @ 2012-10-01 22:36 ETCOW 阅读(285) 评论(0) 推荐(0) 编辑