搜索资源列表
计caltor算器
- java 编写的计算器程序,能够连加连减,还能够乘除优先-prepared by the calculator program that can reduce even the company, but can also multiply and divide priority
fraction
- 1.自定义分数类fraction,使用该类可以完成分数的输入、分数的加、减、乘、除二目运算和一目减运算、分数的约分操作、分数的通分操作、分数的倒数运算、对两个分数进行六种比较运算、以及对分数的输出等操作。 2.改造上述分数类,将其中使用的普通函数尽量改写成运算符重载函数。如,可重载+、-、*、/、>、>=、<、<=、==、!=,以实现分数的各种运算。并且实现分数与整数的混合运算。 3.从分数类派生出一个用来描述整型的Integer类,完善整型类Integer,使其
MultiplicationOfLargeNumbers
- 用一个整型数组表示一个大数,数组的每个元素储存大数的一位数字,则实际的大数d表示为: d=a[k]*10的k-1次幂+a[k-1]*10的k-2次幂+......+a[2]*10+a[1] 其中a[0]保存该大数的位数. (2),实现两个大数相乘. (3),再此基础上实现两个大数相除 -With an integer array to represent a large number, every element of the array storage of large numb
01_BigInt_ok
- 实现计算i的i次方的加和,i从1到n,其中n为用户输入的任意整数。(要考虑结果可能超出长整数long的表示范围的情况)-big integer, implented with C++. Functions include add and multiply.
zdy8complex
- 简单计算器,支持加,减,乘,除,乘方,复数运算-Simple calculator, support add, subtract, multiply, divide, involution, complex computing
Polynomial
- 多项式复合运算,支持多项式的加减乘。(补充说明:黑框一个)-Polynomial composite operations,support plus,minus,multiply and so on.
PolynMul
- 多项式相乘的源码。可实现相加、相乘运算。-Polynomial multiplication of the source. Can be achieved add, multiply operations.
Matrix
- 矩阵的求值,给两个矩阵,求矩阵乘积,原创-give two martix and get its multiply
calculator
- 计算器,功能要求: <1>用户输入算式文本,确定后程序给出计算结果,支持两个操作数的加减乘除四则运算即可。例如 用户输入“1234+5678”,敲回车键后,屏幕显示“1234+5678=6912”,然后等待用户输入下一个算式文本; 又如用户输入“123/78”,敲回车键后,屏幕显示“123/78=1.577”, 然后等待用户输入下一个算式文本; 乘法符号用“*”表示 <2>操作数最多不超过四位,可以是整数或小数;结果如果是小数,保留到小数点后3位。
LAB10_E1
- Calculate the salary of the employee by hours and save it as records, output the infomations, the total salary is calculated by the total hours and salary per hour. Question: 1. Write a program to read FIVE (5) employees’ records from the keybo
bigintegermultiply
- C++实现两个5000位以内的大整数相乘-C++ Two BigInteger multiply
file3
- 自己创建矩阵类,可以实现矩阵加法、减法 数乘、乘法、除法等。 -Building matrix class automatically which can achieve add,subtraction,multiply between matrix and matrix
Polynomial-Multiply
- 多项式相乘 数据结构课程经典案例 包含多项式相加算法-Polynomial Multiply
jiandanjisuanqi
- c利用堆栈方法编写计算器可,实现小数的加、减、乘、除运算功能,并可进行行编辑功能(#表示退格,@表示退行)和括号匹配检验。-c using the method of preparation of the calculator stack can achieve decimal add, subtract, multiply, divide arithmetic functions, and can be line editing (# represents backspace, @ indic
Max-Multiply
- i.最大K乘积问题 问题描述 设I是一个n位十进制整数。如果将I划分为k段,则可得到k个整数。这k个整数的乘积称为I的一个k乘积。试设计一个算法,对于给定的I和k,求出I的最大k乘积。 例如十进制整数 1234 划分为 3 段可有如下情形: 1 × 2 × 34 68 1 × 23 × 4 92 12 × 3 × 4 144 编程任务 对于给定的I 和k,编程计算I 的最大k 乘积。 数据输入 输入的第1 行中有2个正整数n和k。正整数n是序列的