Welcome![Sign In][Sign Up]
Location:
Search - Decimal to Binary c

Search list

[Other resource2005120223543424992

Description: VC & C++ -> 转换十进制为二进制的CPP程序,转换效率非常高 -VC C-gt; Converting the decimal to binary CPP procedures, a very high conversion efficiency
Platform: | Size: 844 | Author: yunx | Hits:

[Otherleap20

Description: 输入:以十进制的形式读入要判断的年份,从键盘取得的一个十进制数转换为二进制数存入BX寄存器中,再将BX中的内容保存在变量year中。 判断:首先将year中的内容首先除以4,不能被4整除,则一定不是闰年,能被4整除的,需再将year中的内容除以100,不能被100整除的,则一定是闰年,能被100整除的,需再将year中的内容除以400,能被400整除的,则是闰年,不能被400整除的,则不是闰年。 输出:经判断后,是闰年的输出“This is a leap year!”,不是闰年的则输出“ This is not a leap year! ”,然后输出是否要继续判断另一年份是否是闰年的提示字符串“ Continue jugding(y/n)?”,输入‘y’,则输入要判断的年份,输入其它字符则结束程序。 -input : in the metric system in the form of reading the judgment of the Year, from the keyboard of a decimal to binary number into BX register, BX then the content stored in the variables which year. Judgment : the first year of the contents of the first four dividing, not divisible by four, then it is definitely not a leap year, can be divisible by four. need further year divided by the content of 100, can not be divisible by 100, it must be a leap year, be divisible by 100, then take the year divided by 400 elements, be divisible by 400, it is a leap year, can not be divisible by 400, it is not a leap year. Output : judgment, the output is a leap year, "This is a leap year!" , it is not a leap year the output "This is not a leap year!" , Output then judge whether to c
Platform: | Size: 80558 | Author: zn | Hits:

[Otherhexconv

Description: 一组转换函数用于十六进制字符串二进制字符串八进制字符串到十进制整数相互转换-Transfer function for a group of hexadecimal string string octal binary string to decimal integer conversion
Platform: | Size: 3072 | Author: 站长 | Hits:

[Mathimatics-Numerical algorithmsarithmetic_edwardversion

Description: 本程序是用纯C语言编的一个基于命令行的四则运算计算器。主要用于计算四则运算表达式的值,同时可以实现四种进制任意两种之间的转换。 主要功能:1.四则运算:能够解释并执行四则运算表达式。四则运算就是包含+、—、*、/、.(小数点)和数字的运算表达式,例如:3+2.9*(5-6/3) -4+(+8*6)等; 2.错误警告:能够对不符合语法的表达式给出相应的错误警告,本程序共给出了8大类警告 3.进制转换:能够做二进制、八进制、十进制、十六进制中任意两种进制之间的互相转换 4.帮助系统:提供完善的帮助系统 5.出错保护:有良好的出错保护系统,命令行输入错误,程序仍能正常运行。-this program is pure C-language series based on a command line of four Operational calculator. Mainly used in the calculation of four computing the value of the expression, and can achieve four band arbitrary conversion between the two. The main functions : 1. Four computing : the ability to interpret and apply the four Operational expression. Four operations is included ,-,*,/,.( decimal point) and digital arithmetic expressions, for example : 2.9* 3 (5-6/3)-4 (8* 6); 2. Wrong warning : to be able to not grammar of expressions is the corresponding error warnings, the procedure is a total of eight major categories of warning 3. Decimal Conversions : can do binary, octal, decimal, hexadecimal arbitrary band between the two interchangeable 4. help system : to provide a comprehensive help
Platform: | Size: 8192 | Author: 李军 | Hits:

[Windows Develop二进制与机器码转换

Description: 1.进制之间的转换:可以实现十进制转换成其他的进制:二进制,八进制,十六进制;2.机器码之间的转换:输入真值,可以转换成原码,反码还有补码。-1.the conversion of scales:implemant of conversion in decimal and orther scales:binary, octal, and hex.2.the conbersion of machine codes:input ttuth value,then converting into form code,complement and base complement
Platform: | Size: 2048 | Author: 雨金 | Hits:

[Data structs2005120223543424992

Description: VC & C++ -> 转换十进制为二进制的CPP程序,转换效率非常高 -VC C-gt; Converting the decimal to binary CPP procedures, a very high conversion efficiency
Platform: | Size: 1024 | Author: yunx | Hits:

[Otherleap20

Description: 输入:以十进制的形式读入要判断的年份,从键盘取得的一个十进制数转换为二进制数存入BX寄存器中,再将BX中的内容保存在变量year中。 判断:首先将year中的内容首先除以4,不能被4整除,则一定不是闰年,能被4整除的,需再将year中的内容除以100,不能被100整除的,则一定是闰年,能被100整除的,需再将year中的内容除以400,能被400整除的,则是闰年,不能被400整除的,则不是闰年。 输出:经判断后,是闰年的输出“This is a leap year!”,不是闰年的则输出“ This is not a leap year! ”,然后输出是否要继续判断另一年份是否是闰年的提示字符串“ Continue jugding(y/n)?”,输入‘y’,则输入要判断的年份,输入其它字符则结束程序。 -input : in the metric system in the form of reading the judgment of the Year, from the keyboard of a decimal to binary number into BX register, BX then the content stored in the variables which year. Judgment : the first year of the contents of the first four dividing, not divisible by four, then it is definitely not a leap year, can be divisible by four. need further year divided by the content of 100, can not be divisible by 100, it must be a leap year, be divisible by 100, then take the year divided by 400 elements, be divisible by 400, it is a leap year, can not be divisible by 400, it is not a leap year. Output : judgment, the output is a leap year, "This is a leap year!" , it is not a leap year the output "This is not a leap year!" , Output then judge whether to c
Platform: | Size: 79872 | Author: zn | Hits:

[AlgorithmDecimal2Bin

Description: 十进制转换为二进制的3种实现方法,是C++学习的必写程序,希望对大家有帮助-Decimal convert binary to achieve the three kinds of methods, is the C++ Will learn to write procedures, we hope to help
Platform: | Size: 2048 | Author: 陈军 | Hits:

[Special Effectsmulitpleproject

Description: 1. helps to convert decimal to binary number. 2. detect primary number. 3. simple quiz code-1. Helps to convert decimal to binary number.2. Detect primary number.3. Simple quiz code
Platform: | Size: 1024 | Author: lordy dolly | Hits:

[Windows Developc

Description: converting decimal to binary
Platform: | Size: 8192 | Author: matciok | Hits:

[OthererjinzhiBinary

Description: 二进制转换的小程序,将一个十进制数转换为二进制,采用递归的算法,比较简单。-A small binary conversion program will convert a decimal number to binary, using the recursive algorithm is relatively simple.
Platform: | Size: 357376 | Author: 龙哥 | Hits:

[Linux-Unixten2two.tar

Description: 十进制转换为二进制,在linux环境下,通过栈,简易的实现数字在不同进制之间的转换的C实现代码-Decimal to binary in linux environment, through the stack, a simple digital conversion between the different C-band implementation code
Platform: | Size: 1024 | Author: roger | Hits:

[SCMourdev_508935

Description: 用汇编语言写了一个十进制到二进制,二进制到十进制的转换程序,以缩短数制转换程序运行时间,本程序已编译成库函数和编写了相应的头文件,在GCC中可直接调用,如用其他的AVR单片机C编译器,可将提供的源程序作适当修改后使用。-Written in assembly language of a decimal to binary, binary to decimal conversion program to reduce the number system conversion program is run, the program has been compiled into a library and write the appropriate header files, can be called directly in the GCC, such as the use of Other AVR MCU C compiler, source code can be provided with appropriate modifications.
Platform: | Size: 6144 | Author: 吴明 | Hits:

[Windows Developdec2bin

Description: 将十进制转化为二进制的VC C++语言小程序-decimal to binary
Platform: | Size: 181248 | Author: 温海光 | Hits:

[OtherDec2bin

Description: decimal to binary convertor in C
Platform: | Size: 28672 | Author: qwertz | Hits:

[Data structssequence-list-conversion

Description: 采用顺序堆栈实现十进制转换为二进制的C++程序源码-In a sequential stack to achieve a decimal is converted to binary c++ program source code
Platform: | Size: 1024 | Author: 邢玉娟 | Hits:

[OS programdecimal-number-to-binary

Description: VC与C++开发基础 1 7将十进制数转换为二进制输出-VC and C++ development base 17 decimal number into a binary output
Platform: | Size: 2048 | Author: yang | Hits:

[CSharpBinary-Converter

Description: Decimal to Binary Converter in C#
Platform: | Size: 25600 | Author: Princess | Hits:

[Otherb2d

Description: how to convert binary to decimal and decimal to binary source code in c-how to convert binary to decimal and decimal to binary source code in c++
Platform: | Size: 1024 | Author: bita | Hits:

[Otherdecimal to binary conversion

Description: 十进制转二进制文件,输入一个十进制数,输出相应的二进制数(decimal to binary conversion)
Platform: | Size: 6144 | Author: 浅沫浅痕 | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net