摘要:
描述I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.A,B must be positive.输入The first line of... 阅读全文
随笔档案-2015年04月
大数运算之比较大小
2015-04-23 21:13 by Say_ALin, 311 阅读, 收藏, 编辑
摘要:
给你两个很大的数,判断大小。#include #include int main(){ char s1[1024], s2[1024]; while(scanf("%s %s", s1, s2) != EOF) { if(s1[0] == '0' && s2[0] =... 阅读全文
大数阶乘(c语言)
2015-04-23 20:03 by Say_ALin, 404 阅读, 收藏, 编辑
摘要:
大数阶乘。代码比较简单。#include#include#define MAXN 25000 // 如果你的阶乘N比较大,建议大一点int result[MAXN];int main(){int i,j,n;scanf("%d",&n);// memset函数的作用将某一段内存设置成指定的值//... 阅读全文