Skip to content

Instantly share code, notes, and snippets.

@tuankiet65
Created March 20, 2013 11:08
Show Gist options
  • Save tuankiet65/5203891 to your computer and use it in GitHub Desktop.
Save tuankiet65/5203891 to your computer and use it in GitHub Desktop.
Tìm số đảo của một số nguyên dương
program bt4;
uses crt;
var i: longint;
n: string;
begin
clrscr;
write('Nhap n: ');
readln(n);
for i:=length(n) downto 1 do write(n[i]);
readln;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment