高精度
文章平均质量分 51
caobo1212
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
精度计算:(二) 大数乘小数
大数乘小数模板 #include #include #include using namespace std; //c[]:被乘数,用字符串表示,位数不限 //t[]:结果,用字符串表示 //m:乘数,限定10以内 void Mult(char c[],char t[],int m) { int i,k,flag,add=0; char s[210]; in原创 2012-07-31 01:06:54 · 912 阅读 · 0 评论 -
hdu 1042 N!
Problem Description Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N! Input One N in one line, process to the end of file. Output For each N, output N! i原创 2012-07-31 00:00:29 · 2178 阅读 · 1 评论
分享