ソースを参照

README-en.md edited online with Bitbucket

コミット
81c500041a
共有1 個のファイルを変更した2 個の追加0 個の削除を含む
  1. 2
    0
      README-en.md

+ 2
- 0
README-en.md ファイルの表示

@@ -8,6 +8,8 @@
8 8
 
9 9
 [Verano 2016 - Ive] 
10 10
 
11
+Commonly, when solving a problem, there are one or more steps that depend on whether certain conditions are met. Computer programs are built to solve problems, so they should have a structure that allows them to make decisions. In C++ the decision instructions (or conditionals) are structured using  `if`, `else`, `else if` or `switch`. Relational expressions and logical operators are common when handling decision structures. In today's laboratory experience you will practice the use of some decision structures by completing the design of a class called `Bird`. You will also review concepts related to objects.
12
+
11 13
 ## Objectives:
12 14
 
13 15
 1. Use relational expressions and select adequate logical operators to make decisions.