有沒有function 可以跳離iF程式呢?
我們以下的程式,當它符合第一個條件時就跳離if 語句if (lastvalue(close) > 500) {
printf("middle cooripate");
if (lastvalue(close) > 80) {
printf("small cooripate");
}
}
switch ( expression )
{
case constant-expression1 : statement;
....
break;
case constant-expression2 : statement;
...
} if (lastvalue(close) > 500) {
printf("middle cooripate");
elseif (lastvalue(close) > 80) {
printf("small cooripate");
}
}
頁:
[1]