Home > Back-end >  Displacement operator, for the right parameters of plus or minus
Displacement operator, for the right parameters of plus or minus

Time:09-29

For example:
L
Byte c=- 20;
System. The out. Printf (" \ n c=% d ", c> - 2);
Byte d=123;
System. The out. Printf (" \ n d=% d ", d> - 3);
Byte g=- 20;
System. The out. Printf (" \ n g=% d ", g>> - 2);
Byte h=- 20;
System. Out. Printf (" \ n h=% d ", h>> 2);
Byte e=- 20;
System. The out. Printf (" \ n e=% d ", e<- 2);
Byte f=20;
System. The out. Printf (" \ n f=% d ", f<- 3);

Results:

  • Related