题目链接:http://poj.org/problem?id=1331 主要介绍strtol函数: ...
分类:
其他好文 时间:
2016-04-27 17:09:37
阅读次数:
121
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-neg ...
分类:
其他好文 时间:
2016-04-26 14:04:01
阅读次数:
122
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-neg ...
分类:
其他好文 时间:
2016-04-11 18:15:11
阅读次数:
112
Powers of two can be combined, under the laws of exponents, to create other powers of two. Under these rules, you can multiply powers of two, divide p ...
分类:
其他好文 时间:
2016-04-07 13:18:28
阅读次数:
175
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-neg ...
分类:
其他好文 时间:
2016-03-31 00:10:54
阅读次数:
181
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-neg
分类:
其他好文 时间:
2016-03-22 00:32:21
阅读次数:
201
Product Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu Submit Status Description The problem is to multiply two integers X, Y. (0<=X,Y
分类:
其他好文 时间:
2016-03-09 20:59:27
阅读次数:
225
string multiply(string num1, string num2) { if (num1 == "0" || num2 == "0") return "0"; int sa = num1.size(); int sb = num2.size(); vector temp(sa + s...
分类:
其他好文 时间:
2016-03-08 23:30:18
阅读次数:
210
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-neg
分类:
其他好文 时间:
2016-03-06 12:35:26
阅读次数:
154