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

搜索资源列表

  1. zhuanhuan

    0下载:
  2. 本程序是用VC++软件编制的,主要适用于十进制数转换为其他进制的数字,这也是对于栈的经典运用-This procedure is used VC++ software development, mainly applicable to a decimal number converted to hexadecimal number of the other, this is a classic use of the stack
  3. 所属分类:CSharp

    • 发布日期:2017-04-29
    • 文件大小:183.84kb
    • 提供者:wang
  1. 10to16

    0下载:
  2. 此代码实现数从10进制到16进制的转换 用的是stack-the codes here turns a number which bases on 10 to the one beses on 16
  3. 所属分类:CSharp

    • 发布日期:2017-04-16
    • 文件大小:108.83kb
    • 提供者:hocman
  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
    • 文件大小:776byte
    • 提供者:
  1. 5

    0下载:
  2. 进制转换器 要求:(1)可输入二进制、八进制、十进制、十六进制数; (2)将已输入的数转换成其余进制的数; (3)具有输入输出界面。 -Hex converter requirements: (1) can enter the binary, octal, decimal, hexadecimal numbers (2) the number has been entered into a number of other band (3) with input and
  3. 所属分类:CSharp

    • 发布日期:2017-04-08
    • 文件大小:758byte
    • 提供者:津津
  1. number-exchange

    0下载:
  2. 大学里用C语言编写的数进制转换。运行环境为visual c++,可进行数进制间的转换,如十进制转八进制等。-University with a number written in C hexadecimal conversion. Operating environment for the visual c++, can be converted between the number of binary, octal, etc., such as decimal transfer.
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:3.12kb
    • 提供者:tanyuqi
  1. C

    0下载:
  2. 数制转换器,可实现二进制,八进制,十进制,十六进制的相互转换-Notational converter two->eight,two->ten,two->eighteen,eight->two,ten->two,eighteen->two,
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:988byte
    • 提供者:
  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
    • 文件大小:5.7kb
    • 提供者:刘宇
  1. sicily

    0下载:
  2. 编写一个程序,把一个非负的十进制数转换为任意base(2<=base<=16)进制的数。 -To write a program, a non-negative decimal number to convert to any base (2 < = base < = 16) hexadecimal number.
  3. 所属分类:CSharp

    • 发布日期:2017-12-10
    • 文件大小:5.04kb
    • 提供者:chen jian sheng
  1. Hexadecimal-conversion

    0下载:
  2. 该程序可以将十进制数值转换为其他进制的数值,读者可自行输入任意十进制数字和要转化的进制数,程序将自动输出转化后的进制数-The program can convert decimal values 映漀爀 other binary value, the reader can enter any decimal number to hexadecimal number conversion, the program will automatically output conversion hexa
  3. 所属分类:CSharp

    • 发布日期:2017-11-25
    • 文件大小:247.29kb
    • 提供者:xiaoye
  1. 2

    0下载:
  2. 2进制10进制16进制转换(包括整数小数)使用数组进行编程-Hex converter
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:1.92kb
    • 提供者:王燎
  1. Get_File_MD5_Value

    0下载:
  2. C#源码获取文件的MD5值,采用MD5加密的例子,选择要计算 MD5 值的文件名和路径,会得到文件的MD5 值16进制字符串,也可得到文件的sha1 值16进制字符串以及哈希值16进制字符串,在此要用到字节数组转换为16进制表示的字符串,最后一步是生成和显示文件的MD5值。-C# source file to get MD5 value, using MD5 encryption example, choose to calculate the MD5 value of the file nam
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:14.43kb
    • 提供者:wpudn5
  1. StackTest

    0下载:
  2. 测试堆栈功能,将十进制数转换成二进制/八进制/十六进制-Test stack function to convert decimal to binary/octal/hexadecimal
  3. 所属分类:CSharp

    • 发布日期:2017-04-27
    • 文件大小:62.14kb
    • 提供者:Joy
  1. 2

    0下载:
  2. 1. 实现顺序栈的基本操作(初始化、判断栈空、判断栈满、入栈、出栈)。 1) 从键盘输入一系列整数,当输入值为0时,停止输入,产生顺序栈。 2) 实现入栈操作,输入需入栈的值,如入栈成功,显示“入栈成功!”,否则显示“入栈失败!”并说明失败原因。 3) 实现出栈操作,如出栈成功,显示“出栈成功!”,否则显示“出栈失败!”并说明失败原因。 4) 顺序栈中元素依次出栈,并显示 。 2. 实现循环队列的基本操作(初始化、判断队空、判断队满、入队、出队)。 1) 从键盘输入一
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:1.72kb
    • 提供者:郭翔
  1. Program

    0下载:
  2. 这是一个简单的c#入门程序,可完成十进制数到八进制数的转换。-It is a simple c# entry procedures, which can converse the decimal number to octal.
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:689byte
    • 提供者:李云鹏
搜珍网 www.dssz.com