代码搜索:Digit

找到约 4,689 项符合「Digit」的源代码

代码结果 4,689
www.eeworm.com/read/356592/10224214

m demo_2.m

% Shape Context Demo #2 % MNIST digits % load in the digit database (only needs to be done once per session) if ~(exist('train_data')&exist('label_train')) load digit_100_train_easy; % load digi
www.eeworm.com/read/356592/10224229

m~ demo_2.m~

% Shape Context Demo #2 % MNIST digits % load in the digit database (only needs to be done once per session) if ~(exist('train_data')&exist('label_train')) load digit_100_train_easy; % load digi
www.eeworm.com/read/421644/10718246

adb recursive_write_natural.adb

with Ada.Text_IO; use Ada.Text_IO; procedure Recursive_program is procedure Write_Natural (Num : Natural) is First_Digit : Natural; --Unit digit Other_Digits : Natural; --All exc
www.eeworm.com/read/16793/690857

isnum2

isnum2() { case "$1" in '[-+]' | '') return 1;; # empty or bare `-' or `+' [-+]*[!0-9]*) return 1;; # non-digit with leading sign [-+]*) return 0;; # OK *[!0-9]*) return 1;; # non-digit *) ret
www.eeworm.com/read/233448/4678837

f90 arrayarg.f90

! Program to test arrays ! The program outputs a series of numbers. ! Two digit numbers beginning with 0, 1, 2 or 3 is a normal. ! Three digit numbers starting with 4 indicate an error. ! Using 1D arr
www.eeworm.com/read/162614/5523316

f90 arrayarg.f90

! Program to test arrays ! The program outputs a series of numbers. ! Two digit numbers beginning with 0, 1, 2 or 3 is a normal. ! Three digit numbers starting with 4 indicate an error. ! Using 1D arr
www.eeworm.com/read/366702/2873311

f90 arrayarg.f90

! Program to test arrays ! The program outputs a series of numbers. ! Two digit numbers beginning with 0, 1, 2 or 3 is a normal. ! Three digit numbers starting with 4 indicate an error. ! Using 1D arr
www.eeworm.com/read/359056/2980109

cpp 1316.cpp

#include int main() { int a[10000]; for(int i = 0; i < 10000; i++) { a[i] = 0; } int digit; int left; int sum = 0; for(i = 1; i < 10000; i++) { digit = i % 10;
www.eeworm.com/read/132381/14090764

txt smartc文法.txt

关键字: if,else,int,return,void,while for; 专用符号: + - * / < >= == != = ; , ( ) [ ] { } /* */ 其他标记是ID和NUM,通过下列正则表达式定义: ID = letter letter* num = digit digit* letter =
www.eeworm.com/read/112980/15473226

c digitmap.c

/*************************************************************************** * * Module: digitmap.c * * Description: check digit is invalid according to the digitmap * * Auth