Guest User

Untitled

a guest
Jan 19th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int age, height, weight, combined, mask;
  7. age = 29; // 00000000 00000000 00000000 00011101
  8. height = 185; // 00000000 00000000 00000000 10111001
  9. weight = 80; // 00000000 00000000 00000000 01010000
  10. combined = age | (height << 8) | (weight << 16); //00000000 01010000 10111001 00011101
  11. mask = 0b11111111; // двоичный литерал
  12. printf("Age: %d, height: %d, weight: %d\n", mask & combined, mask & combined >> 8, mask & combined >> 16);
  13. // Age: 29, height: 185, weight: 80
  14.  
  15. system("pause");
  16. }
Add Comment
Please, Sign In to add comment