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

搜索资源列表

  1. lzg

    0下载:
  2. 一个关于汇编语言输出ASCII码字符的小程序,但从中可体会到汇编的入门-an output of the assembler language ASCII characters in the small program, but a compilation of the crux of the entry
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:921
    • 提供者:ll
  1. 第八次作业

    1下载:
  2. 转换ASCII码为二进制,十进制,十六进制的码输出 -ASCII conversion of binary, decimal, hexadecimal codes output
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4350
    • 提供者:狩猎者
  1. 求Asc码

    0下载:
  2. 用户输入0-127之间的数,输出其对应的ascii码的符号-user input between the 0-127 number, the output of their counterparts ascii code symbols
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:18155
    • 提供者:二胖
  1. project1

    0下载:
  2. 本项目主要完成对局用程控交换机的二进制磁带卸载数据,按照一定的格式要求,转化成标准ASCII码格式并以文本形式输出,然后再经过内存排序后,提供给后续计费模块进行批价处理。-The project was completed for the binary PBX game with tape unload data, according to certain format requirements, into a standard ASCII format Type and output as
  3. 所属分类:CSharp

    • 发布日期:2017-04-01
    • 文件大小:7732
    • 提供者:闫晗
  1. tool_String2Hex

    0下载:
  2. lua编写的工具程序,可以将网页中的字符全部转化为16进制的ascii码,然后作为数组输出。-lua utility written, you can page all the characters into a 16 hexadecimal ascii code, and then as an array output.
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:639
    • 提供者:w
  1. intConvert

    0下载:
  2. 可以将int类型的转换为ascii码,输入为一个为binary为内容的文件,输出为一个ascii内容的文件。-Int type can be converted to ascii code for a binary input for the content of the document, the contents of the output to a ascii file.
  3. 所属分类:File Operate

    • 发布日期:2017-04-03
    • 文件大小:2055
    • 提供者:王欣
  1. tt

    0下载:
  2. 本演示程序中,集合的元素为字符,集合大小为n<20,以字符串的形式输入,以“回车”为结束标志。程序读入一个字符串,统计该字符串中出现的字符及其次数,然后输出结果。运用一个二叉树来保存处理结果,字符串中的每个不同的字符用树描述,每个结点包含4 个域,格式为: 字符 该字符的出现次数 指向ASCII码小于该字符的左子树指针 指向ASCII码大于该字符的右子树指针 因此,程序的功能是依次从输入字符串中取出一个字符,把它们插入到树中 -The demonstra
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:93968
    • 提供者:蔡诚霄
  1. letter_count

    2下载:
  2. 统计给定txt ASCII码字符频数和百分比,同时显示其二进制码,输入文件设置路径D:\in.txt 输出路径D:\out.txt可自行修改-Statistics given txt ASCII character code frequency and percentage, at the same time to demonstrate its binary code
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1071
    • 提供者:bigpotato
  1. 06801_30

    0下载:
  2. 用汇编实现将求和以ASCII码的形式依次显示 即:将每位十六进制数转换成ASCII码的形式从高位到低位依次输出 -With the compilation in order to achieve the sum of the form of ASCII code sequence shows that: for each hexadecimal number will be converted into ASCII code format from a high level to low
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1342
    • 提供者:li
  1. read_hdf

    0下载:
  2. 这个命令行程序可以读取和导出任何HDF格式的文件。用户可以选择输出到显示器、ASCII码文件或是二进制文件。-This is a command line program for reading and dumping any HDF file. The user has the option of listing the output to the screen (default), or to an output ASCII or binary file.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:30360
    • 提供者:justforcode
  1. huffman

    0下载:
  2. 还是自己写的关于huffman加密程序,可以实现把加密的内容转为ASCII码输出到文件-huffman code ,can output coded binary to a file,and convert to a ASCII
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:5278
    • 提供者:张贵川
  1. c

    0下载:
  2. 输出ASCII码表;插入法排序;矩阵转化;魔方;随机变量统计硬币的正反面的次数-ASCII code table output insertion sort matrix transformation Cube random variables Statistics coins the number of positive and negative
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1755
    • 提供者:chenbin
  1. qd

    0下载:
  2. 本例要求判别键盘输入字符的类别。可以根据输入字符的ASCII码来判别类型。由ASCII码表可知ASCII值小于32的为控制字符。 在“0”和“9”之间的为数字,在“A”和“Z”之间为大写字母, 在“a”和“z”之间为小写字母,其余则为其它字符。 这是一个多分 支选择的问题,用if-else-if语句编程,判断输入字符ASCII码所在的范围,分别给出不同的输出。例如输入为“g”,输出显示它为小写字符。 -Requirements in this case determine the typ
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:2283
    • 提供者:lili
  1. 1

    0下载:
  2. 本程序由三部分组成:输入员工的信息(年工作时间和工种系数);计算员工年工作量;输出员工年工作量。 在输入员工的信息年工作时间部分,将十进制数ASCII码转换成二进制数。同时由于可能存在小数和,而小数的位数一般为1位,为了便于计算,将每个数都乘10,对于工种系数则由于它要保留到小数点后两位,所以将它们都乘以100,从而去掉小数和,做整数计算。-This procedure consists of three parts: input employee information (annual w
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:878
    • 提供者:fly
  1. ASCII

    0下载:
  2. 输出ASCII码及对应的十六进制数,每按一次键盘输出一个ASCII码对应的符号及其十六进制数-Output ASCII code and the corresponding hexadecimal number, each time you press a keyboard output
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:9229
    • 提供者:RTY
  1. XUNLIAN

    0下载:
  2. 编写程序成功实现输出ASCII码为32-127的字符,-Successful programming output ASCII character code is 32-127,
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:165987
    • 提供者:超儿
  1. cPP

    0下载:
  2. 一个简单的c++程序,其作用是输出ASCII码为32至127的字符,简单易懂-a very sample c++ program,its function is to output characteristics whose ASCII is between 32to 127.
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2267
    • 提供者:gl
  1. ASCII

    0下载:
  2. 打印ASCII码,每行输出5个ASCII.-Print ASCII code, each line of output 5 ASCII.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-17
    • 文件大小:1024
    • 提供者:杨洋
  1. ASCII

    0下载:
  2. 输入一个字符,找出它的前驱字符和后继字符,并按ASCII码值从小到大的顺序输出这3个字符及其对应的ASCII 码(Enter a character, find its predecessor characters and subsequent characters, and according to the ASCII code value from small to large order, the output of these 3 characters and their corresp
  3. 所属分类:其他

    • 发布日期:2017-12-22
    • 文件大小:41984
    • 提供者:GuiYe
  1. 16进制转ASCII

    0下载:
  2. 根据RTK输出的txt文件,将16进制转为可读的ASCII码,并根据协议输出固定格式的信息
  3. 所属分类:Windows编程

« 12 »
搜珍网 www.dssz.com