Ordinal Types: enums, subranges.
Ordinal Operators: INC, DEC, MIN, MAX, ORD, VAL
Types
CASE, LOOP
Standards!
Wat uitleg over topic H
Define a datastructure which can contain triangles (length of the sides (zijden) & angles (hoeken)). Fill it. Check if it is a right-angled triangle (rechthoekige driehoek), indicate this with a boolean. A B C a b c
- if so:
- check Pythagoras on the sides (zijden) of the triangle
- |A^2 + B^2 - C^2| < 0.05 (use ABS())
- calculate the area (oppervlakte)
5,30 7,80 16,73 30 60 90
9,37 8,53 12,67 30 60 90
10,63 8,00 7,00 90 60 30(with a, b and c the angles opposite (tegenover) to respectively (respectievelijk) sides A, B and C)
BEGIN
END TopicOTest1.