Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Code It Up

program CodeItUp;

var
  EString, OString: string;
  C : char;
  i : integer;

begin
  readln(EString);
  i:=1;
  OString := EString;
  for C in EString do
  begin
    OString[i] := chr(Ord(C)+25);
    i+=1;
  end;
  writeln(OString);
  readln();
end.

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.