
大整数
文章平均质量分 83
guojiaqi007
这个作者很懒,什么都没留下…
展开
-
九度 oj 题目1080:进制转换
http://ac.jobdu.com/problem.php?pid=1080 参考了 1.http://blog.youkuaiyun.com/lhyer/article/details/48050359 2.http://blog.youkuaiyun.com/jaster_wisdom/article/details/52107785 大整数的方法 1.中int数组中的一个元素代表一位(转载 2017-01-15 21:48:09 · 314 阅读 · 0 评论 -
九度 oj 题目1208:10进制 VS 2进制
http://ac.jobdu.com/problem.php?pid=1208 参考了 1. http://blog.youkuaiyun.com/wzy_1988/article/details/8661593 2. http://blog.youkuaiyun.com/lhyer/article/details/48050359 根据参考1有 #include #include #转载 2017-01-16 13:38:05 · 553 阅读 · 0 评论 -
九度 oj 题目1076:N的阶乘
http://ac.jobdu.com/problem.php?pid=1076 #include #include #include using namespace std; #define MAXN 99999 typedef struct bign{ int d[MAXN]; bign(string s){ int len = (int原创 2017-01-16 16:21:22 · 247 阅读 · 0 评论 -
九度 oj 题目1119:Integer Inquiry
http://ac.jobdu.com/problem.php?pid=1119 #include #include #include int main(){ //freopen("in/1119.in","r",stdin); int res[200],num[102],rlen,len,c,x; char str[102]; memset原创 2017-01-23 15:53:53 · 266 阅读 · 0 评论 -
九度 oj 题目1037:Powerful Calculator
http://ac.jobdu.com/problem.php?pid=1037 参考了 1.王道机试指南 #include #include #include #include using namespace std; static const int maxn = 200; static const int ten[4] = {1,10,100,1000}; t原创 2017-02-07 09:51:15 · 483 阅读 · 0 评论