代码搜索:数字中频
找到约 10,000 项符合「数字中频」的源代码
代码结果 10,000
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
www.eeworm.com/read/363302/9960685
vhd decoder_display.vhd
library ieee;
use ieee.std_logic_1164.all;
entity decoder_display is
port( clk : in std_logic;
data : in std_logic_vector(9 downto 0); --用于数字键0-9输入
q : out std_logic_vector(6 downto
www.eeworm.com/read/363075/9968777
java letterrandom.java
package Random;
import java.util.Random;
/**
* LetterRandom类主要用于生成指定长度的大小写及数字混合的随机字符串.
* @author shif
* */
class MyRandom {
private int max;
private int min;
private int num;
pr