流程控制 if else

C

if(a==1) { 
    .... 

}
if(a==1) { 
    .... 
} 

else { 
    .... 
}

if(a==1) { 
    .... 
} 

else if(b==1) { 
    .... 
} 

else { 
    ... 
}

javascript

同C

PHP

同C

Lua

if(a == 1) then 
    .... 
end
if(a == 1) then 
    .... 
else 
    .... 
end

if(a == 1) then 
    .... 
elseif(a == 2) then 
    .... 
else 
    .... 
end

Python

if a==1: 
    .... 
elif a==2: 
    .... 
else: 
    ....

bash

if [ a == 'test' ]; then 
    .... 
elif [ a == 'test' ]; then 
    .... 
else 
    .... 
fi
if [ $a -eq 200 ] && [ "$STRING" != "$VALUE" ]; then 
    ... 
fi

results matching ""

    No results matching ""