代码搜索:10 是什么?

找到约 10,000 项符合「10 是什么?」的源代码

代码结果 10,000
www.eeworm.com/read/452695/7436445

c program10_10.c

/* Program 10.10 Outputting floating-point values */ #include int main(void) { float fp1 = 345.678f; float fp2 = 1.234E6f; double fp3 = 234567898.0; double fp4 = 11.2233445
www.eeworm.com/read/450546/7482314

cpp c10-10.cpp

#include using namespace std; class Complex {public: Complex(){real=0;imag=0;} Complex(double r){real=r;imag=0;} Complex(double r,double i){real=r;imag=i;} friend Comple
www.eeworm.com/read/449088/7518592

c 10rkt10.c

#include "stdio.h" #include "10rkt1.c" main() { int i,j; void rkt1f(double,double [],int,double []); double t,h,y[3],z[3][11]; y[0]=-1.0; y[1]=0.0; y[2]=1.0; t=0.0; h
www.eeworm.com/read/449088/7518608

c 10elr10.c

#include "stdio.h" #include "10elr1.c" main() { int i,j; void elr1f(double,double [],int,double []); double y[3],z[3][11],t,h,x; y[0]=-1.0; y[1]=0.0; y[2]=1.0; t=0.0;
www.eeworm.com/read/448516/7532405

java listing 10-10.java

String url = "jdbc:odbc:CustomerInformation"; String userID = "jim"; String password = "keogh"; Statement DataRequest; Connection Db; int rowsUpdated; try { Class.forName( "sun.jdbc.odbc.Jdb
www.eeworm.com/read/327991/7532514

m program_10_10.m

% 采用补零的扩展模式(参见dwtmode函数) % 装载一维尺度信号 load leleccum; s = leleccum(1:3920); % 使用db1在第3层进行分解 [c,l] = wavedec(s,3,'db1'); subplot(4,1,1);plot(s); title('原始信号'); % 从小波分解结构[c,l]中提取1、2及3层的细节系数 [cd1
www.eeworm.com/read/447711/7546376

m program_10_10.m

% 采用补零的扩展模式(参见dwtmode函数) % 装载一维尺度信号 load leleccum; s = leleccum(1:3920); % 使用db1在第3层进行分解 [c,l] = wavedec(s,3,'db1'); subplot(4,1,1);plot(s); title('原始信号'); % 从小波分解结构[c,l]中提取1、2及3层的细节系数 [cd1
www.eeworm.com/read/446736/7567560

htm 2_10_10.htm

教材简介
www.eeworm.com/read/446736/7569022

htm 1_10_10.htm

教材简介
www.eeworm.com/read/446006/7586846

py listing10-10.py

# find_sender.py import fileinput, re pat = re.compile('From: (.*) $') for line in fileinput.input(): m = pat.match(line) if m: print m.group(1)