
模板
文章平均质量分 73
YKY
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
十进制转化为2进制
#include#include#includeusing namespace std;string DecToBinary(const string &dec){ int i,len,sta; stack s; len=dec.length(); int *num=new int[len+1]; for(i=0;i<len;++i)转载 2013-03-17 13:50:48 · 1389 阅读 · 0 评论 -
高精度运算模板C语言
#include#include#include#include#define maxx 100using namespace std;//高精度加法:void add(char *s1,char *s2){ int n,m,i,j,a[maxx+10]={0},b[maxx+10]={0}; int l1=strlen(s1); int l2=strlen(s2); fo原创 2013-02-26 14:38:25 · 3135 阅读 · 0 评论