Guest User

Untitled

a guest
Jul 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main ()
  5. {
  6. int num1 = 4, shiftRight = 203;
  7. shiftRight >>= num1;
  8. cout<<shiftRight<<endl;
  9. system ("pause");
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment