显示简单图形


program Project1;



{$APPTYPE CONSOLE}

begin

  Writeln('   |   |   ');

  Writeln('  x|   |   ');

  Writeln('---|---|---');

  Writeln('   | 0 |x  ');

  Writeln('---|---|---');

  Writeln('   | 0 |   ');

  Writeln('   |   |   ');

  Readln;

end.

你可能感兴趣的:(显示)