Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Русский - 日本語
Ajuda do Scilab >> Scilab > Control flow > elseif

elseif

palavra-chave usada na estrutura "if-then-else" (significa "senão, se...")

Descrição

Ver if,then,else .

Example

a=1;
if a==1 then
    disp("a equals 1")
elseif a==2 then
    disp("a equals 2")
else
    disp("Case not handle")
end
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:34:38 CEST 2016