Selaa lähdekoodia

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 vuotta sitten
vanhempi
commit
81c500041a
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2
    0
      README-en.md

+ 2
- 0
README-en.md Näytä tiedosto

@@ -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.