0
How can we convert a fractional binary number into a decimal num?
can anyone solve it?
3 Respostas
+ 3
I convert a binary string, such as 1001101 to Decimal (77) using c#
Convert.ToInt32("1001101", 2).ToString();
output 77
+ 2
you can use...
String s = Integer.tobinaryNumber ();
- 1
give an example please.