代码搜索:数字对讲机
找到约 10,000 项符合「数字对讲机」的源代码
代码结果 10,000
www.eeworm.com/read/485710/6556763
bak music.h.bak
/*说明**************************************************************************
曲谱存贮格式 unsigned char code MusicName{音高,音长,音高,音长...., 0,0}; 末尾:0,0 表示结束(Important)
音高由三位数字组成:
个位是表示 1~7 这七个音符
www.eeworm.com/read/485710/6556765
h music.h
/*说明**************************************************************************
曲谱存贮格式 unsigned char code MusicName{音高,音长,音高,音长...., 0,0}; 末尾:0,0 表示结束(Important)
音高由三位数字组成:
个位是表示 1~7 这七个音符
www.eeworm.com/read/484696/6572647
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/482655/6620693
m page_415.m
% Example 10.8
% 数字高通滤波器,滤除1+cost的频率成分
numd = [0.597 -1.1394 0.5697]; % define the digital filter
dend = [1 -1.516 0.7028];
n = 0:75;
T = 0.2;
x = 1 + cos(n*T) + cos(T*5*n);
y = filter(numd,de
www.eeworm.com/read/480189/6667936
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/410511/11280344
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/265031/11285417
h bigint.h
// bigint.h: interface for the bigint class.
//定义一个超高精度的类bigint,用以实现超过20位有效数字整型数值的运算,并具有
//兼容已有整型数据int的能力,能与int数据混合运算。
//////////////////////////////////////////////////////////////////////
#i
www.eeworm.com/read/264889/11295862
cpp 11_4.cpp
#include
using namespace std;
int IntNum()
{ char ch; int n;
while (cin.get(ch)) //字符是数字,放回cin流中使其可以作为完整整数读入
if (ch >= '0' && ch > n; break;
www.eeworm.com/read/264473/11311915
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/264066/11330975
m dlvboqi.m
clear
handles=figure('name','数字滤波器设计演示');
set(handles,'unit','normalized','position',[0.1,0.2,0.5,0.5]);
set(handles,'defaultuicontrolunits','normalized');
%坐标轴y一用来绘制低通滤波器
haxes1=axes('positi