Number systems are mathematical notations for representing numbers using digits or symbols in a consistent manner.
1 2c = 1 f64
1 f64 = 1 2c
Example:
Convert 15 Two's Complement to IEEE 754 Double Precision:
15 2c = 15 f64
Two's Complement | IEEE 754 Double Precision |
---|---|
0.01 2c | 0.01 f64 |
0.1 2c | 0.1 f64 |
1 2c | 1 f64 |
2 2c | 2 f64 |
3 2c | 3 f64 |
5 2c | 5 f64 |
10 2c | 10 f64 |
20 2c | 20 f64 |
30 2c | 30 f64 |
40 2c | 40 f64 |
50 2c | 50 f64 |
60 2c | 60 f64 |
70 2c | 70 f64 |
80 2c | 80 f64 |
90 2c | 90 f64 |
100 2c | 100 f64 |
250 2c | 250 f64 |
500 2c | 500 f64 |
750 2c | 750 f64 |
1000 2c | 1,000 f64 |
10000 2c | 10,000 f64 |
100000 2c | 100,000 f64 |