代码搜索结果
找到约 10,000 项符合
9 的代码
ex9_9.cpp
#include
#include
#include
class inventory{
char Description[20];
char No[10];
int Quantity;
double Cost;
double Retail;
public:
inventory(char* ="#",
ex9_9.cpp
#include
#include
#include
class inventory{
char Description[20];
char No[10];
int Quantity;
double Cost;
double Retail;
public:
inventory(char* ="#",
chapter9-9.cpp
//文件名:CHAPTER9-9.cpp
#include
#include
#if _MSC_VER > 1020 // if VC++ version is > 4.2
using namespace std; // std c++ libs implemented in std
#endif
int main( )
{
se
ch9_9.cpp
//*********************
//** ch9_9.cpp **
//*********************
#include
double* fn(const double* pd)
{
static double ad=32;
ad+=*pd;
cout
prg9_9.cpp
#include
#pragma hdrstop
#include "cnode.h"
#include "random.h"
// create circular linked list with given header node
void CreateList(CNode *header, int n)
{
// begin
exam9_9.m
clc;
clear;
% 设置小波函数、时间间隔和采样点数
wname = 'db10';
A = -64; B = 64; P = 224;
% 计算采样周期和采样函数及真实频率
delta = (B-A)/(P-1);
t = linspace(A,B,P);
omega = 5; x = cos(omega*t);
freq = omega/(2*pi);
% 设置尺
实例9-9.c
#include
#include
#include
void new_op(int,siginfo_t*,void*);
int main(int argc,char**argv)
{
struct sigaction act;
union sigval mysigval;
int i;
int
examp9_9.m
syms x y; f=x^2+x*y/3; P=int(int(f,x,0,1/2),y,0,1/2)
ch9_9.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class ch9_9 extends JFrame
{
public ch9_9()
{
//标题
super("测试图标");
//设置大小和位置
setBounds(20,20,500,300);
//
al9_9.c
/*案例代码文件名:AL9_9.C*/
/*程序功能:使用字符指针变量表示和引用字符串*/
main()
{ char *string="I love Beijing.";
printf("%s\n",string);
}