Skip to content

Commit 1612e84

Browse files
Merge branch 'wiljav-master'
2 parents 94fb956 + 53f7cae commit 1612e84

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,16 +1526,16 @@ if (number % 4 != 0) {
15261526

15271527
When a gift is given by a close relative or a family member, the amount of gift tax is determined by the following table (source [vero.fi](https://www.vero.fi/en/individuals/property/gifts/gift-tax-calculator/#gifttaxtables)):
15281528

1529-
| Value of gift | Tax at the lower limit | Tax rate(%) for exceeding part |
1530-
| -------------------- | ---------------------- | ------------------------------ |
1531-
| 5 000 -- 25 000 | 100 | 8 |
1532-
| 25 000 -- 55 000 |  1 700 | 10 |
1533-
| 55 000 -- 200 000 | 4 700 | 12 |
1534-
| 200 000 -- 1 000 000 | 22 100 | 15 |
1535-
| 1 000 000 -- | 142 100 | 17 |
1529+
| Value of gift | Tax at the lower limit | Tax rate(%) for exceeding part |
1530+
| -------------------- | ---------------------- | ------------------------------ |
1531+
| 5 000 -- 25 000 | 100 | 8 |
1532+
| 25 000 -- 55 000 | 1 700 | 10 |
1533+
| 55 000 -- 200 000 | 4 700 | 12 |
1534+
| 200 000 -- 1 000 000 | 22 100 | 15 |
1535+
| 1 000 000 -- | 142 100 | 17 |
15361536

15371537
<!-- Esimerkiksi 6000 euron lahjasta tulee maksaa veroa 180 euroa (100 + (6000-5000) * 0.08), ja 75000 euron lahjasta tulee maksaa veroa 7100 euroa (4700 + (75000-55000) * 0.12). -->
1538-
1538+
<!-- The formula used to calculate the gift tax is: (Tax at the lower limit + (Value of gift (€) - minimum value of gift (€)) * (Tax Rate (%) / 100) -->
15391539
For example 6000€ gift implies 180€ of gift tax (100 + (6000-5000) * 0.08), and 75000€ gift implies 7100€ of gift tax (4700 + (75000-55000) * 0.12).
15401540

15411541
<!-- Tee ohjelma, joka laskee lahjaveron lähimmiltä sukulaisilta annetulle lahjalle. Alla on muutama esimerkki ohjelman toiminnasta. -->

0 commit comments

Comments
 (0)