Possible Duplicate:
How to add even parity bit on 7-bit binary number
There is a problem with my program to ask for a 7-bit binary number and print an 8-bit one with a parity bit. Here is the code.
namespace something
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter a 7-bit binary number:");
int number = Convert.ToInt32(Console.ReadLine());
byte[] numberAsByte = new byte[] { (byte)number };
BitArray bits = new BitArray(numberAsByte);
int bitsSet = 0;
bool even = true;
for (int i = 6; i >= 0; i--)
{
even ^= (number & (1 << i)) > 0;
if ((number & (1 << i)) > 0)
{
bitsSet++;
}
}
if (bitsSet % 2 == 1)
{
bits[7] = true;
}
bits.CopyTo(numberAsByte, 0);
number = numberAsByte[0];
Console.WriteLine("The binary number with a parity bit is:");
Console.WriteLine(number);
}
}
}
The BitArrays at the top couldn't be found in C#. Is there something wrong with it? Plus is the rest of the code fine.
This is the code running. However what it shows is very strange to me
Please enter a 7-bit binary number:
0101010
The binary number with a parity bit is:
146
Why does this happen?