CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - multiply
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - multiply - List
[
Console
]
计caltor算器
DL : 0
java 编写的计算器程序,能够连加连减,还能够乘除优先-prepared by the calculator program that can reduce even the company, but can also multiply and divide priority
Date
: 2008-10-13
Size
: 3.49kb
User
:
嘻嘻
[
Console
]
计caltor算器
DL : 0
java 编写的计算器程序,能够连加连减,还能够乘除优先-prepared by the calculator program that can reduce even the company, but can also multiply and divide priority
Date
: 2025-12-28
Size
: 3kb
User
:
嘻嘻
[
Console
]
js
DL : 0
简单的计算器,能够实现简单的加,减,乘,除等基本运算-Simple calculator, able to realize a simple add, subtract, multiply, with the exception of the basic computing
Date
: 2025-12-28
Size
: 3.26mb
User
:
xiao
[
Console
]
fraction
DL : 0
1.自定义分数类fraction,使用该类可以完成分数的输入、分数的加、减、乘、除二目运算和一目减运算、分数的约分操作、分数的通分操作、分数的倒数运算、对两个分数进行六种比较运算、以及对分数的输出等操作。 2.改造上述分数类,将其中使用的普通函数尽量改写成运算符重载函数。如,可重载+、-、*、/、>、>=、<、<=、==、!=,以实现分数的各种运算。并且实现分数与整数的混合运算。 3.从分数类派生出一个用来描述整型的Integer类,完善整型类Integer,使其能完成整数的各种操作。为分数类fraction和整型类Integer各增加一个成员函数digit_number(),用来统计一个分数中数字字符的数量(如:13/34,数字字符的数量为4)和一个整数中的数字字符的数量(如:13345,数字字符的数量为5)。-1. Custom Class Score fraction, the use of such scores can be input, scores of add, subtract, multiply, with the exception of the second head and a head operation by operation, scores of some sub-operation, scores of通分operation, scores of the last operation of the two scores for the six comparison operators, as well as scores of operation of the output.
Date
: 2025-12-28
Size
: 752kb
User
:
yedan
[
Console
]
MultiplicationOfLargeNumbers
DL : 0
用一个整型数组表示一个大数,数组的每个元素储存大数的一位数字,则实际的大数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 numbers of one digit, the actual large number d is expressed as: d = a [k]* 10 of the k-1 th power+ a [k-1] k-2* 10 plays a power+......+ a [2]* 10+ a [1] where a [0] save the large number of bits. (2), to achieve multiply two large numbers. (3), based on which further divided the two large numbers
Date
: 2025-12-28
Size
: 1kb
User
:
马值
[
Console
]
01_BigInt_ok
DL : 0
实现计算i的i次方的加和,i从1到n,其中n为用户输入的任意整数。(要考虑结果可能超出长整数long的表示范围的情况)-big integer, implented with C++. Functions include add and multiply.
Date
: 2025-12-28
Size
: 46kb
User
:
luckypig
[
Console
]
zdy8complex
DL : 0
简单计算器,支持加,减,乘,除,乘方,复数运算-Simple calculator, support add, subtract, multiply, divide, involution, complex computing
Date
: 2025-12-28
Size
: 2kb
User
:
JasonZ
[
Console
]
Polynomial
DL : 0
多项式复合运算,支持多项式的加减乘。(补充说明:黑框一个)-Polynomial composite operations,support plus,minus,multiply and so on.
Date
: 2025-12-28
Size
: 6.61mb
User
:
蒋青
[
Console
]
PolynMul
DL : 0
多项式相乘的源码。可实现相加、相乘运算。-Polynomial multiplication of the source. Can be achieved add, multiply operations.
Date
: 2025-12-28
Size
: 304kb
User
:
王冰华
[
Console
]
Matrix
DL : 0
矩阵的求值,给两个矩阵,求矩阵乘积,原创-give two martix and get its multiply
Date
: 2025-12-28
Size
: 935kb
User
:
houqi
[
Console
]
calculator
DL : 0
计算器,功能要求: <1>用户输入算式文本,确定后程序给出计算结果,支持两个操作数的加减乘除四则运算即可。例如 用户输入“1234+5678”,敲回车键后,屏幕显示“1234+5678=6912”,然后等待用户输入下一个算式文本; 又如用户输入“123/78”,敲回车键后,屏幕显示“123/78=1.577”, 然后等待用户输入下一个算式文本; 乘法符号用“*”表示 <2>操作数最多不超过四位,可以是整数或小数;结果如果是小数,保留到小数点后3位。 <3>容错功能要求: 当用户输入不合法的文本表达式,程序应提示用户输入错误。例如:用户输入“12f5+123”时,程序应报错,并指出错误内容。 发挥部分: <4>如果程序还可支持其它运算符(例如指数、开方、sin、log、ln等-Calculator, function requirements: < 1 > user input factor text, determine the program after calculation results, support two operands arithmetic can add, subtract, multiply and divide. For example User input "1234+ 5678", press enter key, and the screen shows "1234+ 5678 = 6912", then wait for users to enter the next formula text And as the user input "123/78", press enter key, the screen display "123/78 = 1.577" and then wait for the users to enter the next formula text Multiplication sign with "*" said < 2 > operator at most four, can be an integer or a decimal Results if the decimal, keep to three decimal point. < 3 > fault-tolerant function requirements: When the user input illegal text expression, the program should prompt the user input error. For example: the user input "12 f5+ 123", the program should be error, and pointed out the mistake content. Play a part: < 4 > if the program can also support other operator (such as index, prescribing,
Date
: 2025-12-28
Size
: 1kb
User
:
wangliangtao
[
Console
]
LAB10_E1
DL : 0
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 keyboard that consists of the following data employeeNum (an integer), employeeName (a string literal), salaryPerHour (a floating-point number) and totalHours.( an integer). Then display them on the screen and store them in a file named “Employee.txt”. The program should calculate the totalPay which is salaryPerHour multiply totalHours for each employee. Then, write all of the employees’ records (including totalPay) to the output file. Use file “Employee.txt” for input and “EmployeeSalary.txt” for output.-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 keyboard that consists of the following data employeeNum (an integer), employeeName (a string literal), salaryPerHour (a floating-point number) and totalHours.( an integer). Then display them on the screen and store them in a file named “Employee.txt”. The program should calculate the totalPay which is salaryPerHour multiply totalHours for each employee. Then, write all of the employees’ records (including totalPay) to the output file. Use file “Employee.txt” for input and “EmployeeSalary.txt” for output.
Date
: 2025-12-28
Size
: 1kb
User
:
Cheong
[
Console
]
bigintegermultiply
DL : 0
C++实现两个5000位以内的大整数相乘-C++ Two BigInteger multiply
Date
: 2025-12-28
Size
: 1.6mb
User
:
LJQ
[
Console
]
file3
DL : 0
自己创建矩阵类,可以实现矩阵加法、减法 数乘、乘法、除法等。 -Building matrix class automatically which can achieve add,subtraction,multiply between matrix and matrix
Date
: 2025-12-28
Size
: 2kb
User
:
来燃
[
Console
]
Polynomial-Multiply
DL : 0
多项式相乘 数据结构课程经典案例 包含多项式相加算法-Polynomial Multiply
Date
: 2025-12-28
Size
: 3.54mb
User
:
殷康
[
Console
]
jiandanjisuanqi
DL : 0
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, @ indicates regression) and brace matching test.
Date
: 2025-12-28
Size
: 235kb
User
:
龙儿
[
Console
]
Max-Multiply
DL : 0
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是序列的长度;正整数k是分割的段数。接下来的一行中是一个n位十进制整数。(n< 10) 结果输出 计算出的最大k乘积。 输入文件示例 输出文件示例 input.txt output.txt 3 2 312 62 实现提示 参考矩阵连乘问题。 -That is a difficult problem which i used dynamic ways to solve it.
Date
: 2025-12-28
Size
: 1kb
User
:
武磊
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.