chunwaihome 發表於 17-8-15 20:54

有沒有function 可以跳離iF程式呢?

我們以下的程式,當它符合第一個條件時就跳離if 語句
if (lastvalue(close) > 500) {
printf("middle cooripate");
      if (lastvalue(close) > 80) {
          printf("small cooripate");
   }
}



Semen 發表於 17-8-16 06:23

switch ( expression )
{

case constant-expression1 : statement;
....
break;

case constant-expression2 : statement;
...


}

futures.maze 發表於 17-8-16 22:35

if (lastvalue(close) > 500) {
printf("middle cooripate");
elseif (lastvalue(close) > 80) {
          printf("small cooripate");
   }
}
頁: [1]
查看完整版本: 有沒有function 可以跳離iF程式呢?