代码搜索:hexadecimal
找到约 1,033 项符合「hexadecimal」的源代码
代码结果 1,033
www.eeworm.com/read/152312/5674315
java hexadecimal.java
package com.ibm.awb.misc;
import java.util.StringTokenizer;
/*
* @(#)Hexadecimal.java
*
* IBM Confidential-Restricted
*
* OCO Source Materials
*
* 03L7246 (c) Copyright IBM Corp. 1996, 199
www.eeworm.com/read/222772/14674139
doc lcd.doc
T h e I O K e y p a d / L C D D e m o
(0) OVERVIEW
This demo is meant to be used with the io.lib software. For me, its
primary function has been to verify and test the keypad
www.eeworm.com/read/173137/9671346
1 hexwords.1
HEXWORDS(1) mpatrol library HEXWORDS(1)
NNAAMMEE
hexwords - extracts any words from a file that can be
written as hex numbers
SSYYNNOOPPSSI
www.eeworm.com/read/127767/14337964
txt e083. parsing and formatting a number into binary, octal, and hexadecimal.txt
int i = 1023;
// Parse and format to binary
i = Integer.parseInt("1111111111", 2); // 1023
String s = Integer.toString(i, 2); // 1111111111
// Parse and format to o
www.eeworm.com/read/142160/12960076
htm the des algorithm illustrated.htm
The DES Algorithm Illustrated
www.eeworm.com/read/127767/14336112
txt e131. parsing and formatting a byte array into binary, octal, and hexadecimal.txt
This example uses a BigInteger to convert a byte array to a string of binary, octal, or hexadecimal values.
// Get a byte array
byte[] bytes = new byte[]{(byte)0x12, (byte)0x0F, (byte)0xF0}
www.eeworm.com/read/127767/14336866
txt e130. parsing and formatting a big integer into binary, octal, and hexadecimal.txt
BigInteger bi = new BigInteger("1023");
// Parse and format to binary
bi = new BigInteger("1111111111", 2); // 1023
String s = bi.toString(2); // 1111111111
www.eeworm.com/read/292398/8358597
dat errortc43.dat
出错信息: Hexadecimal or octal constant too large
中文注释: 16进制或8进制常数太大
www.eeworm.com/read/290380/8486625
c show_oh.c
#include
void main ()
{
int value = 255;
printf("The decimal value %d in octal is %#o\n",
value, value);
printf("The decimal value %d in hexadecimal is %#x\n",
www.eeworm.com/read/290380/8486627
c oct_hex.c
#include
void main ()
{
int value = 255;
printf("The decimal value %d in octal is %o\n",
value, value);
printf("The decimal value %d in hexadecimal is %x\n",