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?

link|improve this question

20% accept rate
3  
How do you know there is a problem? Does it fail to compile? (then you should detail the compilation error!) Does it fail to run? (then detail the run-time crash!) Does it run, but produce wrong output? (then detail your input, your expected output, and the actual output!) "There is a problem with my code" is a nice intro, but it is NOT enough to do anything with. – abelenky Feb 6 at 20:59
@abelenky: I have edited the question. As you can see, it prints out what I wasn't expecting – Ashar Aslam Feb 6 at 21:14
As far as I can count this is the 3rd question on the same topic. – L.B Feb 6 at 21:54
possible dublicate of stackoverflow.com/questions/9152125/… – L.B Feb 6 at 21:57
feedback

closed as exact duplicate by L.B, casperOne Feb 8 at 21:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Add using System.Collections; to the top of your file to include the namespace.

link|improve this answer
ok now, look at the top, here is the program running. it is very strange. – Ashar Aslam Feb 6 at 21:03
feedback

Since this is homework, I won't give you code, but here's my advice:

Don't use int if you're only accepting 0 - 127 for your range. Use byte. Don't use Convert use TryParse to avoid non-numeric input and values that won't fit in a byte. Check your input to allow only the correct range of numbers (0-127). Don't reshift the whole mask each time, declare your mask variable outside the loop and just shift it 1 place each iteration. Your bool even should be eliminated since you never use it. Don't use a BitArray. Just and your value with 0x7F to set 0 or perform an or with 0x80 to set 1.

link|improve this answer
now it is saying that the TryParse, bits and bits do not exist in the current context. Why? – Ashar Aslam Feb 6 at 21:33
You're using something like bool isValid = byte.TryParse(Console.ReadLine(), out number);? See the TryParse documentation msdn.microsoft.com/en-us/library/system.byte.tryparse.aspx – JamieSee Feb 6 at 21:39
feedback

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