代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/216648/15000085
txt 2.txt
i main
( NUL
) NUL
{ NUL
e for
( NUL
i i
= NUL
n 1
; NUL
i i
< NUL
n 9
; NUL
i i
u NUL
) NUL
{ NUL
i i
u NUL
; NUL
} NUL
5 while
( NUL
i s
w NUL
n 6
) NUL
{ NUL
i s
= NUL
www.eeworm.com/read/210633/15194992
m zjadms.m
function [x2,y2]=zjadms(a,b,c,d,u,h,n,x0)
x=x0;
y=c*x;
for i=1:n
if (i==1)
x(:,i+1)=x(:,i)+h*(a*x(:,i)+b*u);
else
x(:,i+1)=x(:,i)+h/2*(3*(a*x(:,i)+b*u)+(a*x(:,i-1)+b*u))
www.eeworm.com/read/207746/15263109
m dissim.m
function dissim=dissim(a,x)
if a==x
dissim=1;
else
dissim=0;
end