소스 검색

README-en.md edited online with Bitbucket

부모
커밋
77a5e15151
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2
    3
      README-en.md

+ 2
- 3
README-en.md 파일 보기

@@ -1,4 +1,4 @@
1
-# Decision Structures - Password Strength
1
+# Selection Structures - Password Strength
2 2
 
3 3
 ![main1.png](images/main1.png)
4 4
 ![main2.png](images/main2.png)
@@ -6,8 +6,7 @@
6 6
 
7 7
 [Verano 2016 - Ive]
8 8
 
9
-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 of these structures by completing the design of an application that determines the strength of a password.
10
-
9
+Commonly, when solving a problem, we select among several choices depending 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 and select alternatives. In C++ selections are structured using `if`, `else`, `else if` or `switch`. Relational expressions and logical operators are common when handling selection structures. In today's laboratory experience you will practice the use of some of these selection structures by completing the design of an application that determines the strength of a password.
11 10
 ## Objectives:
12 11
 
13 12
 1. Use relational expressions and select adequate logical operators to make decisions.