代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/166734/5472963
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/166734/5473098
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/166734/5473190
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/162614/5527032
c 961004-1.c
int k = 0;
main()
{
int i;
int j;
for (i = 0; i < 2; i++)
{
if (k)
{
if (j != 2)
abort ();
}
else
{
j = 2;
k++;
}
}
exit (0);
}
www.eeworm.com/read/162614/5527693
c bb1.c
foo (a)
{
int b = 32;
if (b & a)
return 1;
else
return 0;
}
www.eeworm.com/read/162614/5527802
c dbl_parm.c
foo (a, b, c)
double a;
int b;
double c;
{
if (b)
return a + c;
else
return a - c;
}
www.eeworm.com/read/162614/5527824
c mchar.c
int
foo (char *a, char *b)
{
int x;
*a = *b;
x = *b;
if ((char) x)
return 1;
else
return 0;
}
www.eeworm.com/read/162614/5527921
c o.c
foo (a, p)
char a;
int *p;
{
int b = a;
*p = b;
a = (char) a;
if (a)
return b;
else
return b + 1;
}
www.eeworm.com/read/162614/5527960
c uns_tst.c
a (c)
unsigned char c;
{
unsigned u = c;
if ((int)u < 0)
return 1;
else
return 0;
}
b (x, y)
unsigned x, y;
{
x /= y;
if ((int)x < 0)
return 1;
else
return 0;
}
www.eeworm.com/read/162614/5528316
c 950124-1.c
f ()
{
if (g ())
h ();
else
{
do
{
return 0;
break;
}
while (1);
}
return 1;
}