代码搜索结果
找到约 10,000 项符合
9 的代码
9-9.cfm.htm
建立自定义对象
ep9_9.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
ep9_9.cpp
/*9.8 用二进制方式,把一个文件连接到另一个文件的尾部,选择适当的文件打开方式完成。*/
/*9.9 同上题,采用重新定位文件指针方式来实现(随机访问方式)。*/
#include
#include
#include
using namespace std;
int main(){
int n;
char filena
ep9_9.dsp
# Microsoft Developer Studio Project File - Name="ep9_9" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
ex9_9.m
% Example 9.9
% second order response
% real poles
t = 0:.01:8;
p1 = -1; p2 = -2;
num = 2; den = [1 3 2];
y = step(num,den,t);
plot(t,y);
xlabel('Time (sec)')
ylabel('y(t)')
title('Second
algo9-9.c
/* algo9-9.c 检验bo9-7.c的程序 */
#include"c1.h"
#define NULLKEY 0 /* 0为无记录标志 */
#define N 10 /* 数据元素个数 */
typedef int KeyType; /* 设关键字域为整型 */
typedef struct
{
KeyType key;
int ord;
xt9-9.cpp
#include
using namespace std;
class Product
{public:
Product(int n,int q,float p):num(n),quantity(q),price(p){};
void total();
static float average();
static void displa
c9-9.cpp
#include
using namespace std;
class Box
{public:
Box(int=10,int=10,int=10);
int volume();
private:
int height;
int width;
int length;
};
Box
text9-9.htm
Untitled Document
例9-9 .m
I = imread('rice.png');
J = imread('cameraman.tif');
K = imadd(I,J,'uint16');
imshow(K,[])