Skip to content

Commit 6486d80

Browse files
committed
Chapter 7.2 - Grammarly + Upper Letter Titles
1 parent 5c4de65 commit 6486d80

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

chapter-07-complex-loops-exam-problems.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ We can split the solution into three parts:
4949
* **Process the input** – use nested loops to iterate through every possible character for each of the five password characters.
5050
* **Print the result** – print each "stupid" password that meets the requirements.
5151

52-
#### Read the Input
52+
#### Read The Input
5353

5454
To **read** the **input** we will declare two integer variables **`int`**: **`n`** and **`l`**.
5555

@@ -63,7 +63,7 @@ We have to create **five** nested **`for`** loops, one for each variable. To ens
6363

6464
![](assets/chapter-7-2-images/01.Stupid-password-generator-02.png)
6565

66-
**Did you Know That…?**
66+
**Do Y ou Know That…?**
6767

6868
* We can **define a `for`** loop with a variable of type **`char`**:
6969

@@ -142,7 +142,7 @@ Let's remove the **`if`** check from the innermost loop. Now, let's initialize e
142142

143143
As we can see, we can solve the same problem by using different types of loops. Of course, there is a most suitable choice for each problem. To practice each type of loop, try to solve each of the following problems by using every type of loop we've learned so far.
144144

145-
### Test in the Judge System
145+
### Testing in The Judge System
146146

147147
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#1](https://judge.softuni.org/Contests/Practice/Index/660#1).
148148

@@ -196,7 +196,7 @@ The other **tricky** part in this problem is that, apart from the check above, w
196196

197197
Accordingly, if the **condition** that checks whether the number is equal to the "stop" number returns **`false`**, our program should **continue printing**. This covers the **fourth and last** part of our program.
198198

199-
### Test in the Judge System
199+
### Testing in The Judge System
200200

201201
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#2](https://judge.softuni.org/Contests/Practice/Index/660#2).
202202

@@ -234,7 +234,7 @@ Print on the console **all special numbers**, separated by **space**.
234234

235235
Solve the problem on your own using what you have learned from the previous two problems. Keep in mind the difference between operators for **integer division ( __`/`__ )** and **division with remainder ( __`%`__ )** in Java.
236236

237-
### Test in the Judge System
237+
### Testing in The Judge System
238238

239239
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#3](https://judge.softuni.org/Contests/Practice/Index/660#3).
240240

@@ -272,6 +272,6 @@ Print on the console **all integers** that are the result of the calculations ab
272272

273273
Solve the problem **on your own**, using what you have learned from the previous ones. Remember that you have to define a **separate** variable for each digit of the input number.
274274

275-
### Test in the Judge System
275+
### Testing in The Judge System
276276

277277
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#4](https://judge.softuni.org/Contests/Practice/Index/660#4).

0 commit comments

Comments
 (0)