代码搜索:difference
找到约 3,389 项符合「difference」的源代码
代码结果 3,389
www.eeworm.com/read/471682/6887998
c program9_01.c
/* Program 9.1 Pointing to functions */
#include
/* Function prototypes */
int sum(int, int);
int product(int, int);
int difference(int, int);
int main(void)
{
int a = 10;
www.eeworm.com/read/471682/6888004
c program13_01.c
/* Program 13.1 Debugging using preprocessing directives */
#include
#include
#include
/* Macro to generate pseudo-random number from 0 to NumValues */
#define ran
www.eeworm.com/read/471682/6888015
c program2_17.c
/* Program 2.17 Working with complex numbers */
#include
#include
int main(void)
{
double complex cx = 1.0 + 3.0*I;
double complex cy = 1.0 - 4.0*I;
printf("Worki
www.eeworm.com/read/395196/8190645
cpp glc.cpp
#include "nmea0183.h"
#pragma hdrstop
/*
** Author: Samuel R. Blackburn
** Internet: sam_blackburn@pobox.com
**
** You can use it any way you like as long as you don't try to sell it.
**
**
www.eeworm.com/read/395196/8190724
cpp gtd.cpp
#include "nmea0183.h"
#pragma hdrstop
/*
** Author: Samuel R. Blackburn
** Internet: sam_blackburn@pobox.com
**
** You can use it any way you like as long as you don't try to sell it.
**
**
www.eeworm.com/read/395196/8190874
cpp lcd.cpp
#include "nmea0183.h"
#pragma hdrstop
/*
** Author: Samuel R. Blackburn
** Internet: sam_blackburn@pobox.com
**
** You can use it any way you like as long as you don't try to sell it.
**
**
www.eeworm.com/read/194440/8194196
m fbdiff.m
%first break vs shot & rec location along the survey line
nshots=input('What is the number of shots? ');
nrecs=input('What is the number of receivers? ');
figure('menubar','none');
hold;
for i=1:ns
www.eeworm.com/read/194440/8194240
m disprectime.m
function disprectime(rtrange,rt1,mint);
% Display of the reciprocal time for shot pair(s)
f=gcf;
diffmat=refdata('get','diffmat');
nshots=refdata('get','nshots');
absdiffmat=abs(diffmat);
% All the
www.eeworm.com/read/194440/8194280
m fbdiffup.m
%first break vs shot & rec location along the survey line
nshots=input('What is the number of shots? ');
nrecs=input('What is the number of receivers? ');
%figure;
%hold;
%for i=1:nshots;
% plot(r
www.eeworm.com/read/193607/8213320
cpp distance.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti