代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/304826/13786147
txt 10-09.txt
%例10-9 有3种或3种以上选择的情况下if-else-end选择语句的使用。
%该函数用于演示If—else—end语句的第3种用法
function f=ifthree(x)
if x>100
fprintf('%f is a great positive number\n',x)
elseif x>=10
fprintf('%f is a b
www.eeworm.com/read/480529/6665812
txt 10-09.txt
%例10-9 有3种或3种以上选择的情况下if-else-end选择语句的使用。
%该函数用于演示If—else—end语句的第3种用法
function f=ifthree(x)
if x>100
fprintf('%f is a great positive number\n',x)
elseif x>=10
fprintf('%f is a b
www.eeworm.com/read/156874/11758024
txt 10-09.txt
%例10-9 有3种或3种以上选择的情况下if-else-end选择语句的使用。
%该函数用于演示If—else—end语句的第3种用法
function f=ifthree(x)
if x>100
fprintf('%f is a great positive number\n',x)
elseif x>=10
fprintf('%f is a b
www.eeworm.com/read/216389/15015527
txt 10-09.txt
%例10-9 有3种或3种以上选择的情况下if-else-end选择语句的使用。
%该函数用于演示If—else—end语句的第3种用法
function f=ifthree(x)
if x>100
fprintf('%f is a great positive number\n',x)
elseif x>=10
fprintf('%f is a b
www.eeworm.com/read/201342/15409981
txt 10-09.txt
%例10-9 有3种或3种以上选择的情况下if-else-end选择语句的使用。
%该函数用于演示If—else—end语句的第3种用法
function f=ifthree(x)
if x>100
fprintf('%f is a great positive number\n',x)
elseif x>=10
fprintf('%f is a b
www.eeworm.com/read/105624/15459472
c asn_read.c
/*****************************************************************************
File: asn_read.c
Contents: Functions to parse ASN.1 as part of the ASN_GEN program.
System: ASN development.
Cr
www.eeworm.com/read/391017/8428282
m product.m
function f=Product(x)
if x==0
f=1;
else
f=x*Product(x-1);
end
www.eeworm.com/read/388335/8614106
txt demo.txt
BEGIN
IF I=1 THEN
I:=I+1
ELSE
IF I=2 THEN
I:=I+11;
END.