代码搜索:数字中频
找到约 10,000 项符合「数字中频」的源代码
代码结果 10,000
www.eeworm.com/read/292139/8376000
java digsum3.java
// 【例2.2】 求一个三位数的数字和。
public class Digsum3
{
public static void main(String args[])
{
int n=123,a=0,b=0,c=0,digsum=0;
a = n % 10; //个位
b = (n%100) /
www.eeworm.com/read/390935/8432920
m bpnet_main.m
close all
clear all
net=BPnet_creat;
while(1)
test=input('please input the images name :','s'); % 提示输入待识别的图片的名称(输入0~9的数字即可)
if abs(test)abs('9') % 输入不存在
www.eeworm.com/read/390935/8432953
m rbfnet_main.m
close all
clear all
net=RBFnet_creat;
theta=0:179;
while(1)
num=input('Please input the images name :','s'); % 提示输入待识别的图片的名称(输入1~8的数字即可)
if abs(num)abs('8')
www.eeworm.com/read/187967/8584187
s43 flash.s43
;****************************************************************************
; 文件名称:
; flash.s43
; 文件说明:
; 程序向片内Flash 从 0x1080 起始的位置写数字,然后读出写入的数据并
; 存放在以 0x200 开始的
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