代码搜索:计数程序

找到约 10,000 项符合「计数程序」的源代码

代码结果 10,000
www.eeworm.com/read/254490/12133975

txt 键盘扫描程序1.txt

4×4键盘程序(c语言) 分类:默认栏目#include unsigned char code table[]={0x01,0x02,0x03,0x04, 0x05,0x06,0x07,0x08 0x09,0x0a,0x0b,0x0c 0x0d,0x0e,0x0f,0x00}; unsigned char temp;
www.eeworm.com/read/254407/12139328

c 按键扫描驱动程序.c

//按键扫描驱动程序 unsigned char key,key_h,kpush; unsigned int key_l; //按键连接到p1.0、p1.1、p1.2 void int_t0(void) interrupt 1 { unsigned char dd,i; TL0=TL0+30;TH0=0xfb; //800 /* 按键判别 */ if ((P1&
www.eeworm.com/read/152068/12146556

sas 例08-03程序.sas

data ex8_3; input x c @@; cards; 2.78 1 3.23 1 4.20 1 4.87 1 5.12 1 6.21 1 7.18 1 8.05 1 8.56 1 9.60 1 3.23 2 3.50 2 4.04 2 4.15 2 4.28 2 4.34 2 4.47 2 4.64 2 4.75 2 4.82 2 4.
www.eeworm.com/read/152068/12146569

sas 例20-02程序.sas

data ex20_2; input x1-x9; cards; 4.34 389 99.06 1.23 25.46 93.15 3.56 97.51 61.66 3.45 271 88.28 0.85 23.55 94.31 2.44
www.eeworm.com/read/152068/12146584

sas 例13-02程序.sas

data ex13_2; input x y a b @@; cards; 256.9 27.0 1 1 271.6 41.7 1 2 210.2 25.0 1 3 300.1 52.0 1 4 262.2 14.5 1
www.eeworm.com/read/152068/12146610

sas 例09-12程序.sas

data ex9_12; input x y c; cards; 13 3.54 1 11 3.01 1 9 3.09 1 6 2.48 1 8 2.56 1 10 3.36 1 12 3.18 1 7 2.65 1 10 3.01 2 9 2.8
www.eeworm.com/read/152068/12146623

sas 例06-13程序.sas

data ex6_13; x1=32; x2=12; n1=4; n2=3; u=(x1/n1-x2/n2)/sqrt(x1/n1**2+x2/n2**2); p=(1-probnorm(abs(u)))*2; proc print; var u p; run;
www.eeworm.com/read/152068/12146627

sas 例06-05程序.sas

data ex6_5; n1=120; n2=110; x1=36; x2=22; p1=x1/n1; p2=x2/n2; pc=(x1+x2)/(n1+n2); sp=sqrt(pc*(1-pc)*(1/n1+1/n2)) ; u=(p1-p2)/sp; p=(1-probnorm(abs(u)))*2; format u p 8