代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/384174/8892434
txt xinanjiang_model.txt
Option Explicit
Private Sub Command1_Click()
Dim P(366) As Single, E(366) As Single, PE(366) As Single
Dim P1(366) As Single, P2(366) As Single, P3(366) As Single, P4(366) As Single
Dim E0(366) As
www.eeworm.com/read/427909/8913180
m factorial.m
function x = factorial(n)
% FACTORIAL Compute n!
% x = factorial(n)
if n == 0
x = 1;
else
x = n*factorial(n-1);
end
www.eeworm.com/read/427674/8926182
f90 errors.f90
subroutine dpoly_val ( n, p, x, pval )
!*****************************************************************************80
!
!! DPOLY_VAL evaluates a double precision polynomial.
!
! Modified:
!
www.eeworm.com/read/427573/8934708
c 16rbsh.c
int rbsh(p,n,a,b,m)
int n,*m;
double a,b,p[];
{ int i,j,k;
i=1; j=n;
while (i=a)&&(p[k-1]
www.eeworm.com/read/427313/8951903
c getopt.c
/* Getopt for GNU.
NOTE: getopt is now part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to drepper@gnu.org
before changing it!
Copyright (C)
www.eeworm.com/read/426535/9015569
m mytestnio.m
function [y1,y2]=mytestnio(x1,x2)
if nargin==1
y1=x1;
if nargout==2
y2=x1;
end
else
if nargout==1
y1=x1+x2;
else
y1=x1;
y2=x2;
end
www.eeworm.com/read/283124/9041921
f lapack.f
* ======================================================================
* Changes for DYNAMO:
*
* There have been only a few changes all of which are preceded by CMJF
* comments.
*
* For the PG/Linux