代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/330223/6302403
txt swap.txt
// Swaps the values of two variables
import javax.swing.JOptionPane;
public class Swap
{
public static void main(String[] args)
{
// declare and initialise variables
int first = 3;
i
www.eeworm.com/read/330223/6302456
txt swap.txt
// Swaps the values of two variables
import javax.swing.JOptionPane;
public class Swap
{
public static void main(String[] args)
{
// declare and initialise variables
int first = 3;
i
www.eeworm.com/read/291067/6302978
m matwhos.m
function matwhos(filename)
% *****************************************************************************
% *** D A M ***
% AIMT Digitala Gruppantenner M鋞system
% F鰎svarets Forskningsanstalt
%
% f
www.eeworm.com/read/128332/6304259
m gngauss.m
function[gsrv1,gsrv2]=gngauss(m,sgma)
% m--mean, sgma--standard deviation
if nargin==0,
m=0;sgma=1;
elseif nargin==1,
sgma=m;m=0;
end;
u=rand;
z=sgma*(sqrt(2*log(1/(1-u)))); %a R
www.eeworm.com/read/160556/6304385
m ex5_7.m
x=0:pi/100:2*pi;
y1=2*exp(-0.5*x);
y2=cos(4*pi*x);
plot(x,y1,x,y2)
title('x from 0 to 2{\pi}'); %加图形标题
xlabel('Variable X'); %加X轴说明
ylabel('Variable Y');
www.eeworm.com/read/144056/6308776
m ex5_7.m
x=0:pi/100:2*pi;
y1=2*exp(-0.5*x);
y2=cos(4*pi*x);
plot(x,y1,x,y2)
title('x from 0 to 2{\pi}'); %加图形标题
xlabel('Variable X'); %加X轴说明
ylabel('Variable Y');
www.eeworm.com/read/169849/6308930
h config.h
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/421459/6311392
c vfork1.c
#include "apue.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
printf("before vfork\n"); /*
www.eeworm.com/read/421459/6311591
3 fig8.3
#include "apue.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
printf("before vfork\n"); /*
www.eeworm.com/read/443287/6315918
tcl pagesmgr.tcl
# ------------------------------------------------------------------------------
# pagesmgr.tcl
# This file is part of Unifix BWidget Toolkit
# $Id: pagesmgr.tcl,v 1.4 1999/07/09 11:49:19 eric Exp