0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ほのおかた工房 こうぼうScratchとDartでゲームプログラム入門にゅうもん Advent Calendar 2016
記事きじです

演算子えんざんしをもうすこていきましょう

または、とか、 かつ という演算子えんざんしもありましたね。

main(List<String> args) {
  var physicsScore = 100;
  var mathScore = 100;

  if(physicsScore == 100 && mathScore == 100) {
    print('Greate');
  } else if(physicsScore > 70 || mathScore > 70) {
    print('Good');
  } else {
    print('Bad');
  }
}

とScratchのコードを比較ひかくしてみましょう。

v001.png
  • かつ は && とける
  • または は || とける

はい、Scratchのノウハウが使つかえそうですね。

Thanks

ここまで、んでくれてありがとう!!

では、次回じかいえることを、たのしみにしています。

ではでは

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?