home *** CD-ROM | disk | FTP | other *** search
- // %PARAMETERS = "CH10LIST C:\UT2004"
- //Identifies the package
- //CH10_04LIST.uc
-
- class CH10_04LIST extends Commandlet;
-
- function int Main(string Args)
- {
- //#1
- local int iIntA, iIntB, iResult;
-
- iIntA = 8;
- iIntB = 0;
- iResult = 0;
-
- log("*************");
- log("CH10_04LIST Bitwise opereators" $ chr(13) $ "");
- log(chr(13));
-
-
- //Initial value 00000000 00000000 00000000 00001000
- log("The value is " @ iIntA);
- iResult = iIntA << 4;
-
- //Value shifted 00000000 00000000 00000000 10000000
- log("The value shifted << by 4 is " @ iResult);
-
- log("The value is " @ iResult);
- iIntB = iResult >> 4;
-
- //And shifted back 00000000 00000000 00000000 00001000
- log("The value shifted >> by 4 is " @ iIntB);
-
- return 0;
- }
-