代码搜索:38 有哪些应用?
找到约 10,000 项符合「38 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/257368/11932618
doc ic卡的应用与设计.doc
www.eeworm.com/read/153511/12029615
pdf matlab神经网络应用设计.pdf
www.eeworm.com/read/153500/12029814
txt 此应用数据库说明.txt
在mysql中
创建数据库BookDB
作如下操作::
CREATE TABLE books
(id VARCHAR(8) PRIMARY KEY,name VARCHAR(24),title VARCHAR(96),price FLOAT,yr int,
description VARCHAR(30),saleAmount INT)CHARSET=gb2312;
INSERT
www.eeworm.com/read/153390/12036697
exe 《c++应用编程200例》.exe
www.eeworm.com/read/255955/12044091
pdf 遗传算法原理与应用.pdf
www.eeworm.com/read/255643/12067554
pdf 应用数学方法概述(英文).pdf
www.eeworm.com/read/152921/12073943
cpp 程序12.3:综合应用1.cpp
/* 程序12.3:综合应用1.cpp:*/
#include //包含头文件
#include //包含头文件
using namespace std; //使用名字空间std
class Person //声明基类Person
{
protected:
char cName[20];
int iAge;
char cBirt
www.eeworm.com/read/152921/12073946
cpp 程序12.4:综合应用1.cpp
/* 程序12.4:综合应用1.cpp:*/
#include //包含头文件
#include //包含头文件
using namespace std; //使用名字空间std
class Person //声明基类Person
{
protected:
char *cName;
int iAge;
char *cBirth;
www.eeworm.com/read/152921/12073951
cpp 程序12.6:综合应用3.cpp
/* 程序12.6:综合应用3.cpp:*/
#include //包含头文件
using namespace std; //使用名字空间std
class Furniture
{
protected:
int numberOfLegs,height,width,length;
public:
virtual void display()=0;
};
www.eeworm.com/read/152921/12073956
cpp 程序12.5:综合应用2.cpp
/* 程序12.5:综合应用2.cpp:*/
#include //包含头文件
#include //包含头文件
using namespace std; //使用名字空间std
class publication //声明基类publication
{
protected:
char *title; //书的标题变量
float p