当前位置:
首页 资源下载
搜索资源 - multiply 2 numbers
搜索资源列表
-
0下载:
这是一个用c语言实现的2个32大数相乘,乘积为64.-This is a use of language c 2 32 multiply large numbers, the product of 64.
-
-
0下载:
系统地学习面向对象编程思想,了解MFC架构,逐步熟悉可视化编程环境Visual C++,并在此环境下设计并实现一个简单计算器系统,该计算器应能实现如下功能:
1、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算
2、科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运算
3、以角度、弧度两种方式实现上述部分函数
-Systematic study of object-oriented programming ideas, u
-
-
0下载:
This a program to multiply 2 infinite Digit numbers.
The program also calculates the execution time.
thanks
Kr Anurag
-
-
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 numb
-
-
0下载:
1、实现算术表达式的求值运算,程序通过键盘输入一个表达式,通过运算得到表达式的值,并在显示器上输出完整的表达式及其值;
2、程序实现时,采用栈数据结构
3、表达式以字符串的形式输入;
4、表达式中包括的基本运算符有加、减、乘、除(分别用+、-、*、、表示),表达式中包括括号的处理,括号可以嵌套;表达式中的数字可以是整数,也可以是小数-1, and the evaluation of arithmetic operations, the program through keyboard
-
-
0下载:
An Elementary Introduction to the Discrete Fourier Transform
1.1 ComplexNumbers
1.3 Analyzing the Series
1.5 Filtering a Signal
1.6 How Often Does One Sample?
1.7 Notes and References
1.2 Trigonometric Interpolation
1.4 Fourier Frequenc
-
-
0下载:
汇编 大数相乘
include irvine32.inc
value3=value1*value2
.data
str1 byte "请输入16进制的32位整数(乘数)(8个):",0
str2 byte "请输入16进制的32位整数(被乘数)(8个):",0
str3 byte "相乘结果为:",0
value1 dword ? 乘数
value2 dword ? 被乘数
value3 dword 2 dup(0) 结果
m dword 0
用m
-
-
0下载:
本计算器实现了的功能有:
1、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算
2、科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运行
3、以角度、弧度两种方式实现上述部分函数
4、具备历史计算的记忆功能
5、对不正确的表达式能指出其错误原因-Achieve the functionality of the calculator: 1, binary, octal, decimal and hexadecimal n
-
-
0下载:
使用MFC AppWizard创建如图9-2所示的基于对话窗的应用程序,实现算术加、减、乘和除的运算。
-Use MFC AppWizard to create a dialog-based application as shown in Figure 9-2, arithmetic add, subtract, multiply and divide numbers.
-
-
0下载:
c++课程设计简易计算器可以实现数字的加、减、乘、除、正/负数、小数点;三角函数的运算(sin,cos,tan);数字的开方、阶乘、倒数运算;幂函数的运算;同或、异或、与、求余运算;清零、删除功能;
-c++ curriculum design simple calculator can be achieved (1) numbers to add, subtract, multiply, divide, positive/negative, decimal point (2) trigo
-
-
0下载:
任意4个1-13数字,加减乘除计算24点。
实现原理:
1)排列组合4个数字
2)计算每次排列组合的可能性-Any 4 1-13 digital, add, subtract, multiply and divide calculation of 24 points.
The realization principle:
1) permutation and combination of 4 numbers
The 2 possibility) calc
-
-
0下载:
实现计算器的功能。用户根据程序提示,输入数字,选择要进行的运算,可以进行加、减、乘、除等运算。-Achieve calculator functions. According to the program prompts the user to enter numbers, select the operation to be performed, you can add, subtract, multiply, divide, such as arithmetic.
-
-
0下载:
利用Java技术,实现二十四点经典游戏,对给定的四个数字利用加、减、乘、除和括号等,给出计算二十四点的公式。-Using Java technology, 24.2 classic game, given the use of four numbers to add, subtract, multiply, divide and brackets, etc., are given a formula to calculate 24.2.
-
-
0下载:
设计一个基于Swing的简单计算器,用于整数的加减乘除运算。1.上方为文本框,位于所属容器的北部(BorderLayout.North),下方为数字按钮和运算符按钮,放在一个JPanel中,采用网格布局,该Panel位于所属容器的南部(BorderLayout.South)。
2.在文本框中输入两个数据,按加/减/乘/除 按钮就进行这两个数的相应运算,并将结果输出到文本框中 (可通过ActionEvent事件处理程序完成)。
3.按钮C是用来对文本框中的内容清零的。
-Design
-
-
0下载:
栈的实现及应用
栈是一种常用的线性表,在操作系统中被大量使用,比如计算各种表达式。设计程序完成一个24点游戏,要求用户将四个随机产生的十以内的整数进行加减乘除(允许使用括号,每个数只能用一次)求得二十四。(注:可以不判断录入的表达式是不是只使用了给定的四个数或者使用了多次数)
功能要求:
(1)随机产生四个数(使用randomize和random函数);
(2)要求用户录入表达式,只能使用括号,加,减,乘和除;
(3)将中序算术表达式变成逆波兰式(也就是后序算术表达式);
-
-
0下载:
有一组16个数,分别统计负数、0、正数的个数,并将结果保存number
area reset,data,readwrite
source dcb 1,2,5,-6,-5,3,0,7,-9,0,0,5,12,-94,-3,55
number dcb 0,0,0 分别保存统计得到的 负数,0,正数的个数
对数据区进行64位结果累加操作
先对内存地址0x3000开始的100个字内存单元填入0x10000001~0x10000064字数据,然后将每个字单元进行64位累加
-
-
0下载:
设计一个程序,计算含如下标示符的表达式的值。
1. 数值:包括整数,数值可带正、负号。
2. 一般运算符:加、减、乘、除、左括号、右括号。
3. 输出计算结果。-Design a program to calculate the value of the expression, with the following identifiers.
1. Value: an integer value can bring positive and negative numbers.
-
-
0下载:
To help you making calculator using java program. This will help you add, subtract, divide, and multiply 2 numbers entered by the user-To help you making calculator using java program. This will help you add, subtract, divide, and multiply 2 numbers
-
-
0下载:
1.所有已知错误除大数乘法外皆解决
2.添加按键音
3.解决老版本缓冲区清空问题
4.添加类似windows计算器的/=功能(即自身作为第二个操作数)
5.目前小数仅保留4位以内-1. All known bugs are solved outside except multiply large numbers
2. Add the key tone
3. Solve the problem the old version of the buffer empty
4.
-
-
1下载:
设计一个简易的计算器,实现加、减、乘、除、开方等运算。
要求:前面板设有数字控制器用来输入数字,数字显示器用来显示运算结果。
前面板设有数字控制器用来输入两个数字,数字显示器用来显示运算结果。运算方式有加、减、乘、除。
要求:用一个滚动条来规定运算方式。(Design a simple calculator to add, subtract, multiply, divide, square and other operations.
Requirements: The front pa
-