We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e56229 commit 709d3a7Copy full SHA for 709d3a7
src/branching_logic/challenges.md
@@ -38,6 +38,23 @@ void main() {
38
IO.println("It is greater than 5");
39
}
40
```
41
+<details>
42
+ <summary> Hint 1: </summary>
43
+ <p>Else if statements only execute if previous condition is false.</p>
44
+</details>
45
+
46
47
+ <summary> Hint 2: </summary>
48
+ <p>If statements always execute.</p>
49
50
51
52
+ <summary> Solution </summary>
53
+ <p><pre>
54
+It is greater than 1
55
+It is greater than 5
56
+</pre></p>
57
58
59
## Challenge 4
60
0 commit comments