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

搜索资源列表

  1. 单片机实验实训指导书

    0下载:
  2. 目 录 实验 实验一:WAVE软件使用 实验二:常用指令的使用练习 实验三:循环程序 实验四:查表程序 实验五:数制转换程序 实验六 实用子程序:(编程器的使用) 实验七:中断/定时程序 实验八:输入检测与输出显示程序 课设 一、课程设计目的和意义 二、实验电路系统的结构和使用方法 三、设计参考题目介绍和设计提示性思考题 四、设计任务书及要求 五、课程设计报告格式及要求 六、考核办法 七、课程设计内容及学时安排 -a
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:391494
    • 提供者:王忠远
  1. 栈的应用(1)数制转换

    0下载:
  2. 栈的应用(1)数制转换-stack of applications (1) Number System Conversion
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:12312
    • 提供者:哈哈
  1. conversion

    1下载:
  2. 数制转换问题 [问题描述] 将十进制数N和其它d进制数的转换是计算机实现计算的基本问题,其解决方案很多, 其中最简单方法基于下列原理:即除d取余法。例如:(1348)10=(2504)8-Number system conversion problem [Problem Descr iption] will be a decimal number N, and other d-band conversion is the number of computer calculation
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-23
    • 文件大小:6327
    • 提供者:丁子
  1. dec2bin

    0下载:
  2. 实现十进制数到二进制数的转换,加深对数制的理解。-The realization of a decimal number to binary number conversion, deepen their understanding of the number system.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:833
    • 提供者:saint
  1. weijiyuanlishumazhuanhuanshiyan

    0下载:
  2. 计算机输入设备输入的信息一般是由ASCII码或BCD码表示的数据或字符,CPU一般均用二进制数进行计算或用其他信息进行处理,处理的结果又必须依照外设的要求变为ASCII码、BCD码或七段显示码等。因此,在应用软件中,各类数制的转换和代码的转换是必不可少的-Computer input device input information is normally provided by ASCII code or BCD code that data or characters, CPU are ge
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:422400
    • 提供者:gezhenming
  1. number_conver

    0下载:
  2. 完成数制之间的转换,八进制、十六进制、二进制、十进制之间的转换。可以输入其中的一种进制数值就可以转换了。-Between the completion of a number system conversion, octal, hexadecimal, binary, decimal conversion between. Can enter a hexadecimal value of which can be converted to a.
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:13790
    • 提供者:mkd
  1. MethodsandTechniquesofSystemConversion

    0下载:
  2. 一个任意数制间的转换程序。可以在任意数制间实现转换-An arbitrary number of inter-system conversion process.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:607
    • 提供者:赵彦
  1. DataTransfer

    0下载:
  2. 数制转换问题,编写一个应用,接收用户输入的一个10进制数,然后分别把它转换为2进制、8进制和16进制数输出。-Number system conversion issues, the preparation of an application to receive user input of a 10-hexadecimal number, then it is converted to 2 M, 8 M and 16 M-ary number of the output.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:552
    • 提供者:5235668
  1. Number_System_Conversion

    0下载:
  2. 一个利用栈实现数制转换的C源程序-The use of the system stack to achieve a number of C source code conversion
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:3602
    • 提供者:micmon
  1. stack

    0下载:
  2. 栈的插入语删除的编程实现,用栈实现数制之间的转换。-To remove the parenthesis stack programming, using the stack to achieve the conversion between the number of the system.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:65305
    • 提供者:
  1. Drawingcommandsgui

    0下载:
  2. 数制转换对话框在左边输入一个十进制整数和2~16之间的数,单击“转换”按钮能在右边得到十进制数所对应的2~16进制字符串-Number System Conversion dialog box on the left and enter a decimal integer number between 2 to 16, click the " Convert" button to be able to get the right of the decimal number co
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:565
    • 提供者:zhangfei
  1. conversion_of_number_system

    0下载:
  2. 数制转换程序,c语言实现,计算机概论作业
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:170909
    • 提供者:李灿
  1. shuzhizhuanhuan

    0下载:
  2. 十进制N和其它进制数的转换是计算机实现计算的基本问题,其解决方法很多,其中一个简单算法基于下列原理: N=(N div d)*d+ N mod d ( 其中:div为整除运算,mod为求余运算) 例如十进制向八进制的数制转换 (1348)10=(2504)8,其运算过程如下: N N div 8 N mod 8 1348 168 4 168 21 0 21 2 5 2 0 2 请利用堆栈用上述方法实现十进制向三进制的数制转换-Decimal number
  3. 所属分类:CSharp

    • 发布日期:2017-03-27
    • 文件大小:776
    • 提供者:
  1. ScientificCalculator

    0下载:
  2. 科学计算器,主界面具备以下功能: 1、通过直接输入表达式进行加、减、乘、除、乘方、开方、括号基本运算求值,需要考虑其符号优先级别; 2、加入三角函数,可进行正弦、余弦、正切、余切的运算; 3、对十进制数进行二进制、八进制、十六进制的转化; 4、实现弧度制的数与角度制的数互相转化。 -Scientific calculator, the main interface with the following functions: 1, through direct input ex
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-10
    • 文件大小:1927073
    • 提供者:李怡璇
  1. 123

    0下载:
  2. 利用栈实现数制转换的算法和回文字符串的判定 -Use of stack number system conversion algorithms and palindrome string to determine
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:2561
    • 提供者:吴伟群
  1. Tszzhcppo

    0下载:
  2. 实现各个数制间的转换,应用到数数据结构中的栈和队列!可直接使用。 -Between each number system conversion, applied to the stack and queue in the number of data structures! Can be used directly.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2367
    • 提供者:nicollejia
  1. zhan

    0下载:
  2. 定义顺序栈类型,实现栈的所有基本操作。 定义链栈类型,实现栈的所有基本操作。 应用栈实现数制的转换-Definition of the order of the stack type, to achieve all of the basic stack operations. Defined chain stack type, all the basic operations of the stack. Application stack to achieve the conversio
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:5835
    • 提供者:刘宇
  1. shujujiegou

    0下载:
  2. 1.实现顺序表的基本操作,包括顺序表的初始化、第i个元素前插入一个新的元素、删除第i个元素、查找某元素、顺序表的销毁。2.实现单链表、循环链表、双向链表的所有基本操作 3.定义顺序栈类型,实现栈的所有基本操作。定义链栈类型,实现栈的所有基本操作。应用栈实现数制的转换。4.定义顺序队列类型,实现栈的所有基本操作。定义链队列类型,实现栈的所有基本操作。将字符串转换为整形。5.定义二叉链表类型,建立二叉树。先序、中序、后序、层次遍历二叉树,并输出遍历结果。-1. Achieve the basic o
  3. 所属分类:Console

    • 发布日期:
    • 文件大小:9968
    • 提供者:ludan
  1. conversion

    0下载:
  2. 数据结构 严蔚敏 C语言版 数制转换 很给劲哦 绝对不会令您失望的。 -Yan Wei Min, data structure C language version of the number system conversion to Jin Oh absolutely will not disappoint you.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:3978
    • 提供者:FanHuan
  1. Drawingcommandsgui

    0下载:
  2. 数制转换对话框在左边输入一个十进制整数和2~16之间的数,单击“转换”按钮能在右边得到十进制数所对应的2~16进制字符串-Number System Conversion dialog box on the left and enter a decimal integer number between 2 to 16, click the " Convert" button to be able to get the right of the decimal number co
  3. 所属分类:Driver Develop

    • 发布日期:2017-04-12
    • 文件大小:610
    • 提供者:zhi6316603
« 12 »
搜珍网 www.dssz.com