Skip to content

Commit ad9b7bc

Browse files
committed
Add missing semicolons on 1.6
1 parent 0478bd4 commit ad9b7bc

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

data/part-1/6-conditional-statements.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ int luku = 7;
10941094
if (luku >= 5 && luku <= 10) {
10951095
System.out.println("On! :)");
10961096
} else {
1097-
System.out.println("Ei ollut :(")
1097+
System.out.println("Ei ollut :(");
10981098
}
10991099
``` -->
11001100

@@ -1105,7 +1105,7 @@ int number = 7;
11051105
if (number >= 5 && number <= 10) {
11061106
System.out.println("It is! :)");
11071107
} else {
1108-
System.out.println("It is not :(")
1108+
System.out.println("It is not :(");
11091109
}
11101110
```
11111111

@@ -1127,7 +1127,7 @@ int luku = 145;
11271127
if (luku < 0 || luku > 100) {
11281128
System.out.println("On! :)");
11291129
} else {
1130-
System.out.println("Ei ollut :(")
1130+
System.out.println("Ei ollut :(");
11311131
}
11321132
``` -->
11331133

@@ -1138,7 +1138,7 @@ int number = 145;
11381138
if (number < 0 || number > 100) {
11391139
System.out.println("It is! :)");
11401140
} else {
1141-
System.out.println("It is not :(")
1141+
System.out.println("It is not :(");
11421142
}
11431143
```
11441144

@@ -1159,7 +1159,7 @@ int luku = 7;
11591159
if (!(luku > 4)) {
11601160
System.out.println("Luku ei ole suurempi kuin 4.");
11611161
} else {
1162-
System.out.println("Luku on suurempi tai yhtäsuuri kuin 4.")
1162+
System.out.println("Luku on suurempi tai yhtäsuuri kuin 4.");
11631163
}
11641164
``` -->
11651165

@@ -1169,7 +1169,7 @@ int number = 7;
11691169
if (!(number > 4)) {
11701170
System.out.println("The number is not greater than 4.");
11711171
} else {
1172-
System.out.println("The number is greater than 4.")
1172+
System.out.println("The number is greater than 4.");
11731173
}
11741174
```
11751175

0 commit comments

Comments
 (0)