代码搜索:数字对讲机
找到约 10,000 项符合「数字对讲机」的源代码
代码结果 10,000
www.eeworm.com/read/388532/8603559
html 13.2.2 tostring方法.html
var onum=new Number(1983)
with (document)
{
write("数字1983");
write("16进制表示为:"+onum.toString(16));
write("8进制表示为:"+onum.toString(8));
write("2进制表示为:"+onum.toS
www.eeworm.com/read/388532/8604218
html 10.2.11 indexof方法.html
var strMsg="你好,我的QQ是122737329,电话时05461234567,常联系哦"
var isNumber=false;
var intNum=0;
document.write(strMsg);
document.write("indexOf方法演示....");
//循环判断字符串中字符是否为数字
www.eeworm.com/read/388532/8604229
html 10.2.4 charat方法.html
var strMsg="你好,我的QQ是122737329,电话时05461234567,常联系哦"
var isNumber=false;
var intNum=0;
document.write(strMsg);
document.write("分析中....");
//循环判断字符串中字符是否为数字
for(v
www.eeworm.com/read/287313/8695238
h soundplay.h
/*说明**************************************************************************
曲谱存贮格式 unsigned char code MusicName{音高,音长,音高,音长...., 0,0}; 末尾:0,0 表示结束(Important)
音高由三位数字组成:
个位是表示 1~7 这七个音
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 下运行通 ...