炎の型工房 火の型 22日目 : DartのIf文!! Scratchと比較してみよう --2--
1504 ワード
炎の型工房 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のコードを比較してみましょう。
- かつ は && と書ける
- または は || と書ける
はい、Scratchのノウハウが使えそうですね。
Thanks
ここまで、読んでくれてありがとう!!
では、次回会えることを、楽しみにしています。
ではでは
Author And Source
この問題について(炎の型工房 火の型 22日目 : DartのIf文!! Scratchと比較してみよう --2--), 我々は、より多くの情報をここで見つけました https://qiita.com/kyorohiro/items/2cf09ce5fc2390867158著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .