Possible Duplicate:
How to add even parity bit on 7-bit binary number

OK. I'm sorry I can't input code as for some reason c# isn't working for me. So, is there any way anyone could provide information had to add an even parity bit to a 7 bit binary number to the right of the number. It would be useful to show code. Please could you help me? I have researched it and nothing has helped.

link|improve this question

20% accept rate
1  
You need C# but "c# isn't working for you"?? – Tim Schmelter Feb 7 at 19:34
Do you mean that you need to set bit 0 to 0 (if number contains even number of 1s) or 1 (if number contains odd number of 1s) and let bit 1 through 7 contain the 7-bit number? – Casperah Feb 7 at 19:36
8  
What has changed since yesterday? Or 2 days ago? Or here‌​? My point: you should clarify what has been useful / not helpful in your existing question(s) before re-posting – Marc Gravell Feb 7 at 19:36
@Casperah: what I mean is if the number contains an odd number of 1s, add a 1, and if it contains an even number of them, add a 0. – Ashar Aslam Feb 7 at 19:55
@Marc Gravell: bits of the information have worked and some have made the code worse. – Ashar Aslam Feb 7 at 19:55
show 2 more comments
feedback

closed as exact duplicate by Oded, 500 - Internal Server Error, ken2k, Tim Schmelter, Anders Abel Feb 7 at 20:12

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.

1 Answer

For each of the powers of 2 from 2^0 to 2^6, do a bitwise AND with the number to check to see if that bit is set. If it is, increment a counter. Then, mod that counter by 2 and append it to your data.

link|improve this answer
will it be like if (number & 7) count ++ ? – Ashar Aslam Feb 7 at 19:59
It would be if (number & Math.Pow(2,i)) count++, where i goes from 0 to 6 – Evan M Feb 7 at 20:49
feedback

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