- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
program Drink;
{$APPTYPE CONSOLE}
uses
SysUtils,
Windows;
const
C: array[0..5] of Cardinal = ($64AABAB8, $54AAA288, $54AB3A90, $54AAAAA0, $563ABBB8,$60820000);
var
I: Byte;
B: PByte;
begin
for I := 191 downto 0 do
begin
B := @C[I div 32];
Inc(B, (I - (I div 32) * 32) div 8);
if (B^ and (1 shl (I mod 8))) <> 0 then
Write('X')
else
Write(' ');
if (I mod 32) = 0 then
Writeln('');
end;
ReadLn;
end.
guest 01.06.2009 15:35 # 0
-A- 24.08.2021 20:37 # 0