ex72.pp 278 B

12345678910111213
  1. Program Example72;
  2. { Program to demonstrate the Upcase function. }
  3. Var I : Longint;
  4. begin
  5. For i:=ord('a') to ord('z') do
  6. write (upcase(chr(i)));
  7. Writeln;
  8. { This doesn't work in TP, but it does in Free Pascal }
  9. Writeln (Upcase('abcdefghijklmnopqrstuvwxyz'));
  10. end.