代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/230947/14265018
awk tomatlab.awk
{
if (NR==1) {
printf("J=zeros(%d,%d);\n",$1,$2);
}
else if ($1!=0) {
printf("J(%d,%d)=%s;\n",$1,$2,$3);
}
}
END {
printf("J=sparse(J);\n");
}
www.eeworm.com/read/229507/14333655
c lcdtext.c
//--------------------------------------------------------------------------
//
// Software for MSP430 based e-meters.
//
// THIS PROGRAM IS PROVIDED "AS IS". TI MAKES NO WARRANTIES OR
// REPR
www.eeworm.com/read/126474/14422036
c !_test.c
void main()
{
int a, b;
a = b = 1;
if( !(a == b) ) printf( "not equal\n" );
else printf( "equal\n" );
}
www.eeworm.com/read/227283/14433441
cpp 2_9.cpp
#include
void main()
{
int x,j=0;
do
{
coutx;
if ((x%3==0) && (x%5==0) && (x%7==0))
cout
www.eeworm.com/read/225703/14523264
c getopt.c
/* Getopt for GNU.
NOTE: getopt is now part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to drepper@gnu.org
before changing it!
Copyright (C)
www.eeworm.com/read/124933/14524185
cpp 2_9.cpp
#include
void main()
{
int x,j=0;
do
{
coutx;
if ((x%3==0) && (x%5==0) && (x%7==0))
cout
www.eeworm.com/read/124854/14533278
pl test2.pl
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
write(a,b,c);
end.
www.eeworm.com/read/225428/14540982
m bianhuan.m
function Y=Bianhuan(X)
[m,n]=size(X);
Y=zeros(m+2,n+2);
for i=1:m+2
for j=1:n+2
if i==1|j==1|i==m+2|j==n+2
Y(i,j)=0;
else
Y(i,j)=X(i-1,j-1);
www.eeworm.com/read/225359/14543981
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);
}