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

Day 21

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

Last updated at Posted at 2016-12-22

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

Ifぶんためしてみよう

DartのIfぶんていきましょう。Dartには、ScratchとおなじようにIfぶんがあります。

main(List<String> args) {
  var score = 100;
  if(score == 100) {
    print('Greate');
  } else if(score > 70) {
    print('Good');
  } else {
    print('Bad');
  }
}

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

v001.png
  • 変数へんすう作成さくせいは、var score = 100 でつくれる
  • if文は、if(){} でける
  • 比較演算ひかくえんざんは、 "==" とか ">" とかを利用りようする

Dartの比較演算子ひかくえんざんし

演算子えんざんし 説明せつめい
== おなじかどうか
> よりおおきいか
< よりちいさいか
>= よりおおきいか、または、おなじか
<= よりちいさいか、または、おなじか
!= ことなるかどうか
があります。

色々いろいろためしてみよう!!

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?