You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* We can **define a `for`** loop with a variable of type **`char`**:
69
69
@@ -142,7 +142,7 @@ Let's remove the **`if`** check from the innermost loop. Now, let's initialize e
142
142
143
143
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.
144
144
145
-
### Test in the Judge System
145
+
### Testing in The Judge System
146
146
147
147
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#1](https://judge.softuni.org/Contests/Practice/Index/660#1).
148
148
@@ -196,7 +196,7 @@ The other **tricky** part in this problem is that, apart from the check above, w
196
196
197
197
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.
198
198
199
-
### Test in the Judge System
199
+
### Testing in The Judge System
200
200
201
201
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#2](https://judge.softuni.org/Contests/Practice/Index/660#2).
202
202
@@ -234,7 +234,7 @@ Print on the console **all special numbers**, separated by **space**.
234
234
235
235
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.
236
236
237
-
### Test in the Judge System
237
+
### Testing in The Judge System
238
238
239
239
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/660#3](https://judge.softuni.org/Contests/Practice/Index/660#3).
240
240
@@ -272,6 +272,6 @@ Print on the console **all integers** that are the result of the calculations ab
272
272
273
273
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.
274
274
275
-
### Test in the Judge System
275
+
### Testing in The Judge System
276
276
277
277
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