代码搜索:illustrates
找到约 2,346 项符合「illustrates」的源代码
代码结果 2,346
www.eeworm.com/read/312169/13616899
cpp fornested.cpp
//Listing 6.13
//Illustrates nested for loops
#include
int main()
{
int rows, columns;
char theChar;
std::cout >
www.eeworm.com/read/136989/5828897
readme
README,v 1.2 1999/06/01 19:42:37 schmidt Exp
This example illustrates how to dynamically link an ORB and servants
into an application via the ACE Service Configurator. It also
illustrates a simp
www.eeworm.com/read/130242/5962393
java displaywarning.java
class DisplayWarning {
/* Displaying a warning program by J M Bishop Aug 1996
* ---------------------------- Java 1.1 October 1997
* update
www.eeworm.com/read/106481/6192659
v pli03.v
// This example illustrates how to use a C model instead of a behavioral module.
// Possible uses would be to protect intellectual property or write models in C
// that would be awkward to writ
www.eeworm.com/read/257423/6356452
m c5ex8.m
% Example 5-8 illustrates the scaling theorem
%
syms t s
x = sym('exp(-alpha*t)*cos(omega_0*t)*Heaviside(t)'); % Define a signal
X = laplace(x); % Find its Laplace
% transf
www.eeworm.com/read/261244/11657440
m linearalgebraingaloisfields.m
%To invert a square Galois array, use the inv function. Related is the det function, which computes the determinant of a Galois array. Both inv and det behave like their ordinary MATLAB counterparts,
www.eeworm.com/read/155858/11843234
cpp 4elist0714.cpp
//Listing 7.14
//Illustrates nested for loops
#include
int main()
{
using namespace std;
int rows, columns;
char theChar;
cout > rows;
cout
www.eeworm.com/read/253866/12181679
cpp list0714.cpp
//Listing 7.14
//Illustrates nested for loops
#include
int main()
{
using namespace std;
int rows, columns;
char theChar;
cout > rows;
www.eeworm.com/read/126184/14438846
cpp nonlocal2.cpp
//: C01:Nonlocal2.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file
www.eeworm.com/read/123847/14610019
c fun1.c
/* fun1.c: Illustrates a C function */
#include
float avg(int n, int m) {
return (n + m) / 2.0;
}
int main() {
int x, y;
puts("Enter the 1st number:");
scan