Created
March 20, 2013 11:08
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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