only one left I know is croatianjeden, dva, tri, ceteri, pet, sest, sedam, ossam, devet, deset, jedenaest, dvanaest, trinaest, ceternaest, petnaest, sestnaest, sedamnest, ossamnaest, devetnaest, dvadasetsorry to any croatians about the spellings... i picked them up on holiday 3 years ago so I'm a bit rusty
jedan,dva,tri,četiri,pet,šest,sedam,osam,devet,deset,jedanaest,dvanaest,trinaest,četrnaest,petnaest,šesnaest,sedamnaest,osamnaest,devetnaest,dvadeset
This is the 'actual' binary one0001, 0010, 0011, 0100, 0101, 0110, 0111, 1000, 1001, 1010, 1011, 1100, 1101, 1110, 1111, 10000000, 10000001, 10000010, 10000011, 10001000,
You know how to translate binary? Cool. I just made mine up.
Binary is very simple, it follows the same principle as decimal but with base 2.In decimal100=1101=10102=100103=1000104=10000105=100000106=1000000etcNormally written from right to left in ascending order where 100 represents the least significant digit.....104 103 102 101 100The number 16 is equal to [1 x 101] + [6 x 100] where reading right to left, 6 is the least significant digit. A larger number like 116 would be [1 x 102] + [1 x 101] + [6 x 100] In binary,20=121=222=423=824=1625=3226=64etcIf you wanted to represent 16 in binary it's very easy because you can see that the 5th bit is 16, so remembering that the last digit is the LEAST significant, the binary version of 16 would be10000 (I think nanabush has made a mistake)Because 16 = 1x16 + 0x8 + 0x4 + 0x2 + 0x1If you wanted 17, it's a simple matter of adding 1 to 16, so it would be10001 = 17 = 1x16 + 0x8 + 0x4 + 0x2 + 1x110010 = 18 = 1x16 + 0x8 + 0x4 + 1x2 + 0x1etcHexadecimal is Base 16 system and follows the same rules but needs letters A-F to represent decimal digits from 10 15. Octal is a Base 8 system.80=181=882=64Therefore 1 to 20 in Octal would be:1,2,3,4,5,6,7,8,11,12,13,14,15,16,17,20,21,22,23,24