代码搜索:Digit
找到约 4,689 项符合「Digit」的源代码
代码结果 4,689
www.eeworm.com/read/223007/14664867
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh
www.eeworm.com/read/226285/4786308
java main.java
import java.util.*;
class Main {
// Pads the value with a zero on the left if val is a single digit.
static void printTwoDigits(int val) {
if (val < 10) {
System.out
www.eeworm.com/read/165570/5481318
java radixsort.java
import dslib.dispenser.LinkedQueueUos;
public class RadixSort
{
/** The kth digit (from the right) of number. */
public int digitSelect(int k, int number)
{
String temp = k + "";
if (
www.eeworm.com/read/347503/3170750
l pound.l
.*: Assembler messages:
.*:35: Warning: .* WAW .*
#...
.*:41: Error: symbol .esym. .* .efunction.
.*:43: Error: section .\.extra. .* .esection.
GAS LISTING .*
#...
[[:space:]]*[[:digit:]]+[[:space:]]+
www.eeworm.com/read/309003/3708766
m fignamestring.m
function figname = FigNameString(Prefix,num)
% FigNameString -- Append two-digit number to string
% Usage
% figname = FigNameString(Prefix,num)
%
numstr = sprintf('%2.0f',num);
if nums
www.eeworm.com/read/447738/1696854
l pound.l
.*: Assembler messages:
.*:35: Warning: .* WAW .*
#...
.*:41: Error: symbol .esym. .* .efunction.
.*:43: Error: section .\.extra. .* .esection.
GAS LISTING .*
#...
[[:space:]]*[[:digit:]]+[[:space:]]+
www.eeworm.com/read/474431/6809288
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh
www.eeworm.com/read/111344/15514336
c vtprstbl.c
/*
* $XConsortium: VTPrsTbl.c,v 1.8 91/05/29 18:06:08 gildea Exp $
*/
/*
* Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
*
* All Rights Reserve