代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/100133/6273658
in test.in
// start comment
// another comment
a = 2;
g();
{
a=3*4;
}
if 3 then f(4 + b);
else {
b =a; // assign
}
// final
www.eeworm.com/read/100133/6273737
c input.c
int i;
int *i;
int f(char c, char *d)
{
int f;
c = '\033'+'\47'+'\''+'\\';
d = " \" '\\' foo";
i = c+3*f;
if ( i ) {
f = c;
}
else {
f = 1;
}
}
www.eeworm.com/read/100133/6273790
in test.in
// start comment
// another comment
a = 2;
g();
{
a=3*4;
}
if 3 then f(4 + b);
else {
b =a; // assign
}
// final
www.eeworm.com/read/100133/6273827
c input.c
int i;
int *i;
int f(char c, char *d)
{
int f;
c = '\033'+'\47'+'\''+'\\';
d = " \" '\\' foo";
i = c+3*f;
if ( i ) {
f = c;
}
else {
f = 1;
}
}
www.eeworm.com/read/100133/6273873
in test.in
// start comment
// another comment
a = 2;
g();
{
a=3*4;
}
if 3 then f(4 + b);
else {
b =a; // assign
}
// final
www.eeworm.com/read/320368/6295532
txt erf.txt
Function ERF(X)
If X < 0# Then
ERF = -GAMMP(0.5, X ^ 2)
Else
ERF = GAMMP(0.5, X ^ 2)
End If
End Function
www.eeworm.com/read/489202/6296112
m my_fibo.m
function a=my_fibo(k)
if k==1 | k==2, a=1;
else,
a=my_fibo(k-1)+my_fibo(k-2);
end
www.eeworm.com/read/489202/6296125
m chebpoly.m
function p=chebpoly(n,x)
for i=1:n
if i==1, p{i}=1;
elseif i==2, p{2}=x;
else, p{i}=collect(2*x*p{i-1}-p{i-2},x);
end,end
www.eeworm.com/read/493722/6389437
pas ac1221.pas
program ural1221;
const
maxn=100;
var
map,s1,s2,s3,s4:array[1..maxn,1..maxn]of byte;
n,i,j,ans:byte;
begin
repeat
read(n);
if n=0 then halt;
for i:=1 to n do
for j
www.eeworm.com/read/493723/6389508
pas ac1351.pas
program ural1351;
var
d,x1,y1,x2,y2,n,i,x,y:longint;
begin
read(d,x1,y1,x2,y2,n);d:=d*d;
if x1*y2=x2*y1 then
for i:=1 to n do begin
read(x,y);
if (x1*y=x*y1) and (x1*x+y1