Advertisement
qwtomek

Format

Nov 6th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.37 KB | None | 0 0
  1. Program Format;
  2. Uses Crt;
  3. Var x:Byte;
  4.  
  5. BEGIN
  6.     ClrScr;
  7.     WriteLn('Microsoft Windows [Version 6.1.9200]');
  8.     WriteLn('(c) 2012 Microsoft Corporation. Wszelkie prawa zastrzeżone.');
  9.     Writeln('C:\Windows\System32 format C:\');
  10.     For x:=1 to 100 do
  11.     BEGIN
  12.         Gotoxy(1,4);
  13.         WriteLn('Formatowanie dysku C:\', x, '%');
  14.     END;
  15.    
  16.     While true do
  17.     BEGIN
  18.         ReadLn();
  19.     END;
  20. END.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement