计算机程序语法
franztao
不想说话
展开
-
大整数包(简单版)
#include #include #include #include #include #include using namespace std; const int MAXD = 500, DIG = 9, BASE = 1000000000; const unsigned long long BOUND = numeric_limits :: max ()原创 2014-04-11 16:18:21 · 672 阅读 · 0 评论 -
大整数运算包
#include #include #include #include //#include #include using namespace std; #define max(a,b) (a)>(b)?(a):(b) #define min(a,b) (a) const int BIGN_MAXN=5000; const int bas原创 2014-04-11 16:14:27 · 578 阅读 · 0 评论 -
C_rand函数
srand()就是给rand()提供种子seed 1,先看一个例子 #include #include #include using namespace std; int main( void ) { int i; /* Seed the random-number generator with current time so that * the numbers原创 2015-03-13 09:55:29 · 441 阅读 · 0 评论 -
程序设计竞赛默认首部代码
#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std;原创 2015-03-12 16:22:15 · 401 阅读 · 0 评论 -
论函数调用约定
在C语言中,假设我们有这样的一个函数: int function(int a,int b) 调用时只要用result = function(1,2)这样的方式就可以使用这个函数。但是,当高级语言被编译成计算机可以识别的机器码时,有一个问题就凸现出来:在CPU中,计算机没有办法知道一个函数调用需要多少个、什么样的参数,也没有硬件可以保存这些参数。也就是说,计算机不知道怎么转载 2015-04-01 19:50:24 · 404 阅读 · 0 评论