搜索资源列表
bigintadd
- 本程序有两个文件构成,bigintadd.h和bigintadd.cpp,bigintadd.h定义了大整数加法方法,bigintadd.cpp定义了输出语句。-This program has two documents constitute, bigintadd.h and bigintadd.cpp, bigintadd.h defines a large integer addition method, bigintadd.cpp defines the output statement
3003
- 3、大整数加法 Descr iption 求两个不超过200位的非负整数的和。 Input 有两行,每行是一个不超过200位的非负整数,没有多余的前导0。 Output 一行,即相加后的结果。结果里不能有多余的前导0,即如果结果是342,那么就不能输出为0342。 Sample Input 22222222222222222222 33333333333333333333 Sample Output 55555555555555555555 -
1024bit-P-p
- 随机生成3个1024bit大整数,实现大整数的加法、减法和取模运算,并计算运行100K的平均时间(16进制char类型实现)-1024bit randomly generated three large integer, to achieve large integer addition, subtraction, and modulo operations, and calculate the average running time of 100K (16 hex char type to
polanyunsuan1
- 波兰运算(递归求解)可进行大整数的加法 减法 乘法。-polan operation
bigInt
- 经典大整数操作c++实现,包括大整数加法、大整数减法和大整数13除法-The Classic large integer the operation c++ achieve, including large integer addition, integer subtraction and the integer 13 division
sizayunsuan
- 四则运算之加减法--C语言编程 计算机所能完成的一个基本功能就是完成数据的计算,譬如加法、减法等等。但是在任何一种计算机上,计算中能够使用的数字都是有一定范围的,超过了范围,就没法得到精确的结果。 你现在接受了一个任务,要编写一个高精度计算器的核心部分。所谓高精度计算器,就是可以计算很大很大的数据的计算器。而你所需要编写的程序,就是真正完成高精度加法和高精度减法运算的两个函数,因为程序其它的部分已经由别人编写好了。 函数的输入、输出接口也已经定义完成,譬如 plu
fibonacci
- 实现大整数或超大整数斐波那契数的输出(使用类和大整数加法实现).-Easily print the big Fibonacci numbers.
2
- 定义实现大整数运算的类LINT,该类实现两个100位以内的大整数的加法和结果输出。 类可以有如下的类似定义: class LINT { private: // …… public: LINT(char*) LINT operator+(const LINT& L) ostream& operator<<(const ostream& os, const LINT& L) // …… } 要求: 1)构造
2-11
- 本次程序设计是对于计算机中超过整型数范围的整数,要解决这类数的存储和运算,用单链表进行存储,同时这个大整数的类要实现4个功能:输入、输出、加法和赋值。-This program is designed for computer over the range of integer integer numbers to solve this kind of storage and computing, a single linked list for storage, while the large
add
- 大整数加法 当相加的位数较大时 便于算出详尽的答案-When a large sum of digits integer addition large easy to calculate detailed answers
bigdata
- 设计一个类处理任意大整数。必须实现输入、输出操作、加法操作和赋值操作-Design a class to handle arbitrarily large integers. To the input and output operations, the addition operation and assignment.
add-two-big-int-numbers
- 该程序的功能主要是实现两个大整数(150位以内)的加法。-It can compete one function to add two big int numbers.
big_number
- 自己写好的大整数类,已经实现了加法和减法并重载了输入输出运算符-Large integer class itself written, addition and subtraction has been achieved and the input-output operator overloading
eytites-mode
- ACM程序设计竞赛初级源码,解决大整数的加法问题()