代码搜索:Digit
找到约 4,689 项符合「Digit」的源代码
代码结果 4,689
www.eeworm.com/read/101082/6243428
1a l20.1a
#print
Write a program to read a list of positive numbers
and sort them into ascending order. Print
the sorted list of numbers one per line
as five digit numbers (%5d in printf).
Stop reading numbers
www.eeworm.com/read/214167/15111884
cpp prg8_2.cpp
// File: prg8_2.cpp
// the program initializes a 50-element vector with 5-digit random
// integers in the range 0 to 99999 and sorts the vector using the
// radix sort. it outputs the numbers in 6
www.eeworm.com/read/229812/4750761
gml iscsym.gml
.func __iscsym
#include
int __iscsym( int c );
.ixfunc2 '&CharTest' &func
.funcend
.desc begin
The &func function tests for a letter, underscore or digit.
.desc end
.return begin
A
www.eeworm.com/read/226285/4786176
java main.java
class Main {
public static void main(String[] args) {
System.out.println(Character.getType('a')); // LOWERCASE_LETTER
System.out.println(Character.getType('5')); // DECIMAL_DIGIT_
www.eeworm.com/read/223561/4810473
java digitextractor.java
// Exercise 5.17 DigitExtractor.java
// Application that separates a five-digit number into digits.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class DigitExtractor
www.eeworm.com/read/216502/4891563
c scan.c
# include "mfile1"
# include
/* temporarily */
/* lexical actions */
# define A_ERR 0 /* illegal character */
# define A_LET 1 /* saw a letter */
# define A_DIG 2 /* saw a digit */
#
www.eeworm.com/read/216499/4893089
y bc.y
%right '='
%left '+' '-'
%left '*' '/' '%'
%right '^'
%left UMINUS
%term LETTER DIGIT SQRT _IF FFF EQ
%term _WHILE _FOR NE LE GE INCR DECR
%term _RETURN _BREAK _DEFINE BASE OBASE SCALE
%term EQPL EQ
www.eeworm.com/read/195341/5112497
y bc.y
%right '='
%left '+' '-'
%left '*' '/' '%'
%right '^'
%left UMINUS
%term LETTER DIGIT SQRT _IF FFF EQ
%term _WHILE _FOR NE LE GE INCR DECR
%term _RETURN _BREAK _DEFINE BASE OBASE SCALE
%term EQPL EQ
www.eeworm.com/read/189346/5193984
cs ninedigitsofpiat.cs
// NineDigitsOfPiAt.cs
/*
* Computation of the n'th decimal digit of pi with very little memory.
* Written by Fabrice Bellard on January 8, 1997.
* Ported to C# by Chris Sells on May 5, 2002.
www.eeworm.com/read/189346/5194175
cs ninedigitsofpiat.cs
// NineDigitsOfPiAt.cs
/*
* Computation of the n'th decimal digit of pi with very little memory.
* Written by Fabrice Bellard on January 8, 1997.
* Ported to C# by Chris Sells on May 5, 2002.