Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- /*Промяна на "поредни" битове без цикъл се прави с маска*/
- class ChangeBits
- {
- static void Main()
- {
- Console.WriteLine(224 ^ (7 << 0));//231
- Console.WriteLine(128 ^ (1 << 0));//129
- Console.WriteLine(224 ^ (7 << 5));//0
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment