代码搜索:数字信号源

找到约 10,000 项符合「数字信号源」的源代码

代码结果 10,000
www.eeworm.com/read/285188/8862928

cpp 18 half_find.cpp

#include #include #define MAX 100 void search(){ int low,high,mid,a,b,c,e[MAX],i=1; printf("请输入数字(输入0为结束):\n"); while(1){ scanf("%d",&c); e[i]=c; if(e[i]==0)
www.eeworm.com/read/187056/8869818

-

Attribute VB_Name = "XtsyModule" '系统私有模块用来放置一些子系统独有的过程与函数 Public str_Code As String '存储列内容参数 Public sParam As String Public Const DATA_NUMERIC As Integer = 5 '数字行 Pu
www.eeworm.com/read/383930/8910653

txt 常用转换.txt

public class StringUtils { /** * 判断一个字符串是不是数字组成 * @param s 字符。 * @return */ public static boolean isDigits(String s){ if(s==null | |s.length()==0)return false; for(int i=0;i
www.eeworm.com/read/284467/8927399

txt 开户销户实例.txt

//------------开户实例--------------- void OpenCard(char *szCardInfo)//szCardInfo为12数字字符串,前六位为卡号,后六位为密码(默认六个零"000000") { void *hIc; int nCount = 0 hIc = InitPort(Port);//端口初始 if (!Ch
www.eeworm.com/read/183362/9167162

c atoi.c

//测试结果:把字符串"31512"转换成了数字31512. #include "string.h" #include "stdio.h" int main() { char tmp[10]="31512"; int i; char *p; p=tmp; i=atoi(p); printf("%d\n",i); return 0; }
www.eeworm.com/read/180926/9279317

+

~~~~~~~~~~~~~ 点睛工作室 ~~~~~~~~~~~~~             点睛猜数字 Java 版 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   本软件在 IBM PC 、Windows XP 下测试通过。   源代码在 IBM PC 、Windows XP、J2SDK 1.3.0 下编译,在 J2RE 1.4.1 下运行通 ...
www.eeworm.com/read/375380/9362185

plg shuzizhong.plg

礦ision3 Build Log Project: H:\数字钟\shuzizhong.uv2 Project File Date: 10/31/2008 Output:
www.eeworm.com/read/170114/9818849

c 7-39.c

/* 将字符串a 与字符串b转换成数字后相加*/ #include main() { char *a="–100.23"; char *b="200e-2"; float c; c=atof(a)+atof(b); printf("c=%.2f\n",c); }
www.eeworm.com/read/365074/9880204

c count.c

/*count.c: 统计各个数字、空白及其它字符的次数*/ int puts(char *); int printf(char *fmt, int); int getchar(); int main(void) { int c, i, nwhite, nother; int ndigit[10]; nwhite = nother = 0; i = 0; while (i < 10)
www.eeworm.com/read/168054/9940915

c data.c

#include #include #include void dat_add_num(double num)//置数字数据 { if (num_dat_sta==NULL) { num_dat_sta=(struct num_dat *)malloc(sizeof(struct num_d