代码搜索:else

找到约 10,000 项符合「else」的源代码

代码结果 10,000
www.eeworm.com/read/332264/12766601

java 2.37max.java

int max(int x,int y){ //方法类型为int,两个方法参数都是int类型 int z; if(x>y){ //当x大于y时 return x; //将x作为方法的值返回给调用本方法的方法 }else{ //当x
www.eeworm.com/read/144692/12776357

txt test.txt

proc() { a:int; b:int; c:int; d:int; e:int; f:int; if(a
www.eeworm.com/read/244937/12830667

m metric.m

function distance=metric(x,y) if x==y distance=0; else distance=1; end
www.eeworm.com/read/143587/12859022

tig test9.tig

/* error : types of then - else differ */ if (5>4) then 13 else " "
www.eeworm.com/read/141595/12995513

c 16ibsh.c

int ibsh(p,n,a,b,m) int n,*m; int a,b,p[]; { int i,j,k; i=1; j=n; while (i=a)&&(p[k-1]
www.eeworm.com/read/242478/13003308

m factor.m

function f=factor(n) if n
www.eeworm.com/read/328410/13028678

txt test1.txt

IF a>b THEN x=a-b; ELSE x=b-a;
www.eeworm.com/read/328208/13040846

c 16ibsh.c

int ibsh(p,n,a,b,m) int n,*m; int a,b,p[]; { int i,j,k; i=1; j=n; while (i=a)&&(p[k-1]
www.eeworm.com/read/327550/13073220

m saturation.m

%saturation function %================== % function x=saturation(u,s); % if u-s)&(us % else % x=s; % end %======================
www.eeworm.com/read/242302/13075992

txt 不等式为何和数字一起运算.txt

每 个 逻 辑 判 断 的 等 式 或 不 等 式 运 算 后 都 返 回 一 个 值 , 如 果 为 真 , 返 回 -1, 否 则 返 回 0。 所 以 你 这 个 例 子 等 价 于 : If month< 3 Then t = month - 2 - 12*(-1) Else t = month - 2 - 12* 0 End