CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 小数 分数

搜索资源列表

  1. myknapsack

    1下载:
  2. a) 0-1背包问题采用的是动态规划法,该算法思想简介如下: 有些问题常常没有办法把它们分成较小数目的子问题,在这种情况下,可以试着把问题分成必要多的子问题,每个子问题又可以分成数目不确定的必要多的子子问题,这样就会产生大量的子问题。如果分得的子问题界限不清,互相交叉,则在大量的子问题中会存在一些完全相同的子问题,因而在解这类问题时,将可能重复多次解同一个子问题。这种重复当然是不必要的,避免的方法可以在解决一个子问题后把它的解(包括其子子问题的解)保留下来,若遇到求解与之相同的子问题的时候,
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:1.57kb
    • 提供者:林茜
  1. ks00

    0下载:
  2. 分数是两个整数的比,通常表示为 (或b/a)的形式,其中b称为分子,a称为分母,分母不能为0。分数在计算机中以整数或浮点数(有限小数)的形式表示,大多数情况下都是近似表示,具有较大的误差,例如 ,在计算机中用整数表示为0,用浮点数表示为0.333333。本实例就是要设计一个Fraction (分数) 类类型,该类型的对象可以像基本类型数据一样进行运算,结果仍为分数,运算包括四则运算,关系运算,及求一元一次分式方程的解,输入输出要求按分数方式进行。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.69kb
    • 提供者:岳慧晴
  1. ewfdasfdsafdf

    0下载:
  2. 写出一个程序,接受一个以N/D的形式输入的分数,其中N为分子,D为分母,输出它的小数形式。如果它的小数形式存在循环节,要将其用括号括起来。例如:1/3=.3333…表示为.(3),又如41/333=.123123123…表示为.(123)。-Write a program to accept a N/D in the form of input points, where N is the molecular, D is the denominator, the output of its de
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:837byte
    • 提供者:夏雨
  1. vb.netfuion

    0下载:
  2. 解二元一次方程,vb.net的代码,不可以输入分数,可以输入小数-Solution of the dual一次方程, vb.net code, can not enter scores, you can enter the decimal
  3. 所属分类:.net

    • 发布日期:2017-04-06
    • 文件大小:985byte
    • 提供者:yychbox
  1. calculator

    0下载:
  2. 有理数计算器,可以处理分数小数和整数和负数,并统一以分数的形式输出。-Rational calculator can handle scores of decimal and integer
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:695byte
    • 提供者:xsn
  1. fenshu

    0下载:
  2. 实现分数的相加减,分别输出分子分母,避免无穷小数的不准确-Addition and subtraction to achieve similar scores, respectively, the output numerator and denominator
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:236kb
    • 提供者:wangjun
  1. Fraction_Job02

    0下载:
  2. 分数类。可进行加减乘除的单目、双目运算,小数与分数的混合计算,需手动约分。分数形式打印分数或小数形式输出值-the fraction class.+,-,*,/with one or two parameters. compound calculation between type double and fraction. output in the form of fraction or decimal. do not reduce automatically.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:2.18kb
    • 提供者:纪伊明
  1. Turn-decimal

    0下载:
  2. 小数转分数,北航c2的某一次作业题,经测试能通过所有测试点-Turn decimal fraction of a Northern c2 a job title, tested through all the test points
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:1.27kb
    • 提供者:火乐月半
  1. jsj2

    0下载:
  2. 历时N年,终于实现计算器2.0,特点能按加减乘除四则运算的优先级运算,支持分数运算,按f可以切换分数小数模式,在TC++3.0下编译通过.-Last N years, finally realized Calculator 2.0, by addition, subtraction feature to the priority of arithmetic operations in support of scores of operations, decimal points by f to
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:44.41kb
    • 提供者:lichunzhu
  1. Displayed-as-a-decimal-fraction

    0下载:
  2. 分数显示为小数,例如3/4=0.75.1/3=0.333,还有循环小数的表示方法,自己看算法-Scores as fractions, such as 3/4 = 0.75.1/3 = 0.333, as well as recurring decimal representation, their algorithm to see
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:104.45kb
    • 提供者:fangxiaolong
  1. maidi

    0下载:
  2. 输入一个4位无符号整数,凡需输出这4位数。例如输入上的4位数为1234,则输出的4位数是4321. 2. 编写一个程序,寻找用户输入的几个整数中的最小值。假定用户输入的第一个数值指定后面要输入的数值个数。例如,当用户输入数列为20,15,300,9,700时,程序应该能找到最小数9。 3. 有一个分数序列2/1、3/2、5/3、8/5……..求其前n项之和。 4. 求a+aa+aaa+aaaa+ ……+aaaa…aaa(n个),其中a为1~9值的整数。例如,当a=
  3. 所属分类:EditBox

    • 发布日期:2017-11-06
    • 文件大小:231.8kb
    • 提供者:Tracy
  1. sequential-list

    0下载:
  2. 线性表实现C++源代码,实现分数及小数的加减运算,线性表的并和交等问题-Linear table to achieve C++ source code, addition and subtraction of fractions and decimals, linear table and pay
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:4.69mb
    • 提供者:Even Lin
  1. 415

    0下载:
  2. 设有10名歌手(编号为1-10)参加歌咏比赛,另有6名评委打分,每位歌手的得分从键盘输入:先提示“Please input singer s score: ”,再依次输入第1个歌手的6位评委打分(10分制,分数为整型,分数之间使用空格分隔),第2个歌手的6位评委打分...以此类推。计算出每位歌手的最终得分(扣除一个最高分和一个最低分后的平均分,最终得分保留2位小数),最后按最终得分由高到低的顺序输出每位歌手的编号及最终得分。   注意:变量数据类型的选择应适当,在保证满足设计要求精度的情况下
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:233.02kb
    • 提供者:肖硕
  1. Set-of-linear-equations-calculator

    0下载:
  2. 以顺序消元法为基础求解二元一次方程组,按TAB可切换文本框,支持小数,不支持分数,如系数为负请输入-n(n为系数)-In order elimination method for solving linear equations based group, press TAB to switch the text box, support decimal fraction does not support, such as the coefficient is negative, please e
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:46.47kb
    • 提供者:朱泓恺
  1. sizeyunsuan

    0下载:
  2. y有理数的加减乘除四则运算,对于结果是小数的要求用分数表示-y rational number arithmetic arithmetic, the result is expressed as a decimal fraction requirement
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1.57kb
    • 提供者:YANDONG
搜珍网 www.dssz.com