代码搜索:数字中频
找到约 10,000 项符合「数字中频」的源代码
代码结果 10,000
www.eeworm.com/read/494040/6386500
txt 51music.txt
/*说明**************************************************************************
曲谱存贮格式 unsigned char code MusicName{音高,音长,音高,音长...., 0,0}; 末尾:0,0 表示结束(Important)
音高由三位数字组成:
个位是表示 1~7 这七个音符
www.eeworm.com/read/489307/6478416
cpp chap7_3.cpp
#include
void main()
{
int num[5];
int i,j;
int temp;
for (i = 0;i < 5;i++)
{
printf("请输入第%d个数字:",i + 1);
scanf("%d",&num[i]);
}
for (i = 0,j = 4;i
www.eeworm.com/read/488660/6483263
txt ll(1).txt
#define E 1
#define T 2
#define E_ 3
#define T_ 4
#define F 6
#define digit 7 // 数字
#define add 8 // 左括号
#define mul 9 // 右括号
#define lb 10
#define rb 11
#define M 12
#define L
www.eeworm.com/read/487286/6518321
java getbonus.java
package ControlFlow;
import java.io.*;
public class GetBonus {
public static void main(String[] args) {
char ch;
System.out.println("按1/2/3数字键可得大奖!");
System.out.println("按空格键后回车可退出
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);
}