Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class OperadorAND
- {
- static void Main()
- {
- byte A = 121;
- byte B = 113;
- byte resultado =(byte) (A & B);
- Console.WriteLine(Convert.ToString(resultado,2)); // Imprime 1110001
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement