My code suggests the fact that 0101010 as a binary number with a parity bit would equal 146. Can you please explain to me why this is happening? Could you please offer me some code?
Console.WriteLine("Please enter a 7-bit binary number:");
int a = Convert.ToInt32(Console.ReadLine());
byte[] numberAsByte = new byte[] { (byte)a };
System.Collections.BitArray bits = new System.Collections.BitArray(numberAsByte);
a = a << 1;
int count = 0;
for (int i = 0; i < 8; i++)
{
if (bits[i])
{
count++;
}
}
if (count % 2 == 1)
{
bits[7] = true;
}
bits.CopyTo(numberAsByte, 0);
a = numberAsByte[0];
Console.WriteLine("The number with an even parity bit is:");
Console.Write(count);
Console.ReadLine();
0101010but0001010instead, which would obviously yield unexpected results. – Nuffin Feb 8 at 21:08