搜索资源列表
Arith
- 由于Java的简单类型不能够精确的对浮点数进行运算,这个工具类提供精确的浮点数运算,包括加减乘除和四舍五入。
baoliuxiaoshu
- 编写函数double fun(double x, int m),它的功能是将浮点数X保留M个小数,第M+1位四舍五入,如输入123.456,保留两位小数输出123.46-The preparation of function double fun (double x, int m), its function is to float X retained a small number of M, the first M+1 bit rounded, such as the importation
floatmul
- 浮点数加减乘除,运算源代码,定义浮点数的加、减、乘、除和四舍五入等运算方法-java float mul,dec,source
Arith
- 由于Java的简单类型不能够精确的对浮点数进行运算,这个工具类提供精确的浮点数运算,包括加减乘除和四舍五入。-Since Java' s simple types can not be precise on the floating-point operations, the tools to provide accurate floating-point operations, including addition and subtraction multiplication and d
FloatOperation
- Java的简单类型不能够精确的对浮点数进行运算,这个工具类提供精确的浮点数运算,包括加减乘除和四舍五入。-Java' s simple types can not be accurately carried out on the floating-point operations, the tools provide accurate floating-point operations, including addition, subtraction and rounding.
LCD-calculator-for-MCU
- 由单片机控制1602编写的简易计算器。由于单片机浮点数限制,可以计算6位数字算,大于这个长度,用科学计数法表示小数位精度后6位,大于6位按四舍五入。-failed to translate
1602-calculator
- LCD1602显示的计算器,使用STC89C52单片机,由于单片机浮点数限制,可以计算6位数字运算,大于这个长度,用科学计数法表示小数位精度后6位,大于6位按四舍五入-LCD1602 display calculator use STC89C52 MCU six digital operations, due to the limitations of the single-chip floating-point numbers can be calculated, is greater tha
5
- ★问题描述: 给出平面上的N 个二维点,求出距离最小的2 个点对。本题中距离定义为他们的直 线距离。例如(0,0) (3,4)的距离为5. ★数据输入: 有多组数据,对于每组数据,第一行是一个数字N 表示点的个数。N=0 的时候说明 输入结束。之后N 行,每行有2 个浮点数x_i,y_i 表示第i 个点的坐标。(1<=N<=10000 0,0<=|x_i|,|y_i|<=10^9) ★结果输出: 输出一个浮点数,表示最近点对的
x
- ★问题描述: 给出平面上的N 个二维点,求出距离最小的2 个点对。本题中距离定义为他们的直 线距离。例如(0,0) (3,4)的距离为5. ★数据输入: 有多组数据,对于每组数据,第一行是一个数字N 表示点的个数。N=0 的时候说明 输入结束。之后N 行,每行有2 个浮点数x_i,y_i 表示第i 个点的坐标。(1<=N<=10000 0,0<=|x_i|,|y_i|<=10^9) ★结果输出: 输出一个浮点数,表示最近点对的距离除以2,保
RoundDemo
- Delphi 四舍五入转换演示程序,演示了浮点数转换为整数-Delphi Round Demo
baoliuxiaoshu
- 编写函数double fun(double x, int m),它的功能是将浮点数X保留M个小数,第M+1位四舍五入,如输入123.456,保留两位小数输出123.46-The preparation of function double fun (double x, int m), its function is to float X retained a small number of M, the first M+1 bit rounded, such as the importation
CPP
- 编写一个计算中缀表达式计算的程序。运算符包括+、-、*、/、(、),操作数可以是多位数和浮点数。要求程序从输入文件input.txt读取表达式,并将计算结果写入输出文件output.txt,计算结果保留小数点后2位,四舍五入。输入表达式有错误时,输出“错误”。(Calculation of infix expression)