LoginSignup
0
0

More than 5 years have passed since last update.

炎の型工房 火の型 22日目 : DartのIf文!! Scratchと比較してみよう --2--

Posted at

ほのおかた工房 こうぼう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