You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
457 B
17 lines
457 B
4 years ago
|
357, "101100101"
|
||
|
1357, "#NUM!" // Too large
|
||
|
9, 4, "1001"
|
||
|
9, 8, "00001001"
|
||
|
9, 6.75, "001001" // Leading places as a float
|
||
|
9, -1, "#NUM!" // Leading places negative
|
||
|
9, "ABC", "#VALUE!" // Leading places non-numeric
|
||
|
246, "11110110"
|
||
|
12345, "#NUM!"
|
||
|
123456789, "#NUM!"
|
||
|
123.45, "1111011"
|
||
|
0, "0"
|
||
|
"3579A", "#VALUE!" // Invalid decimal
|
||
|
TRUE, "#VALUE!" // Non string
|
||
|
-100, "1110011100" // 2's Complement
|
||
|
-107, "1110010101" // 2's Complement
|