代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/100133/6273856
in test.in
{
i = 3;
if ( 6 ) j = 7; else j = 8;
while ( 9 ) {
k = j;
}
}
www.eeworm.com/read/151561/12200957
m a2.m
a=[1 4 8
2 4 6
9 3 2]
b=[3 5 7
2 4 6
9 3 2]
if a(1,:)==b(1,:)
a(1,:)=1
b(1,:)=1
else
a(1,:)=0
b(1,:)=0
if a(2,:)==b(2,:)
a(2,:)=2
b(2,:)=2
www.eeworm.com/read/151561/12200964
m a8.m
if (a(1,:)==1)&(b(1,:)==1)
a(1,:)=0
b(1,:)=0
else
a(1,:)=1
b(1,:)=1
end