代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/438832/7725772
sh str-test.sh
#!/bin/bash
# str-test.sh: 检查null字符串和未引用的字符串,
#+ but not strings and sealing wax, not to mention cabbages and kings . . .
#+ 但不是字符串和封蜡, 也并没有提到卷心菜和国王. . . ??? (没看懂, rojy bug)
# 使用 if [ ... ]
# 如果
www.eeworm.com/read/438810/7726124
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/437190/7753654
m td2mat.m
function [m]=TD2mat(S,p,M,L)
for i=1:M
f=1;
for j=1:L
if(S(p,i,j)==0)
f=0;
break;
else
m(i,j)=S(p,i,j);
end
end
www.eeworm.com/read/299910/7824248
txt if.txt
void printf(char *c,int r);
void main(void)
{
int i;
int j;
i = 1;
j = 2;
if(-3) i=i+2;
if(i>j) j = j + i;
else j = j - i;
printf("j=%d\n",j);
}
www.eeworm.com/read/299910/7824256
c s2.c
int min(int i, int j)
{
if (i < j) return i;
else return j;
}
void main(void)
{
int i;
int j;
j=6;
i=j+4;
i=4+6;
j = min(i,j);
}
www.eeworm.com/read/299792/7831681
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/399691/7841659
txt 3.txt
var i,j,k;
begin
read i;
read j;
if(i=j) then write(1) else write(0);
read k;
end.
www.eeworm.com/read/299432/7859198
c !_test.c
void main()
{
int a, b;
a = b = 1;
if( !(a == b) ) printf( "not equal\n" );
else printf( "equal\n" );
}