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();
link|improve this question

20% accept rate
9  
This is your fifth question about the same code in a few days... – jdv-Jan de Vaan Feb 8 at 20:44
@jdv And the same lack of information about things like the type of parity in each – simchona Feb 8 at 20:47
1  
@Ashlar: did you really create FIVE questions about the same code/topic??? – Frank White Feb 8 at 20:48
1  
If you're having this much problem with so little code, I think you're not actually learning from other answers to your other questions. – simchona Feb 8 at 20:51
1  
First error I spotted: you're asking the user to enter a binary number, but you're interpreting that input as a decimal number, so even if the other code was right, you'd not work on 0101010 but 0001010 instead, which would obviously yield unexpected results. – Nuffin Feb 8 at 21:08
show 2 more comments
feedback

2 Answers

I won't give you the code, but I'll give you a push in the right direction...

The core problem with this code is that you are parsing your string as a decimal (base 10) number. That means that you are getting the number 101,010.

If you take that number and truncate it into a byte, you get your value of 146 (101010 mod 256)

I think you'll find this overload of Convert.ToInt32() useful

link|improve this answer
feedback

Depends on what kind of parity you're using: even or odd. For odd parity, your parity bit on 0101010 -> 42 would be zero as well, to keep the total number of bits in the entire 8bits odd. For even parity, you'd set the parity bit to 1, as there's only 3 1 bits in the original number, which would make it 10101010 -> 170.

link|improve this answer
but i want it so the even parity is on the right and i want it to print at the end '0101010 -> 01010101' how can i do this – Ashar Aslam Feb 8 at 20:50
2  
@ashlar I think you need to start doing your own thinking – simchona Feb 8 at 20:52
I have tried stuff on my c# program but it seems to not make any difference – Ashar Aslam Feb 8 at 20:54
1  
What "stuff"? Now you're just making SO debug for you – simchona Feb 8 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.