Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - Português


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

Histórico

VersionDescription
6.0.0 elseif is now protected: Assignments like elseif=1 are no longer possible.
Report an issue
<< else Control flow end >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Mar 27 09:49:51 GMT 2023