Skip to content

Latest commit

 

History

History

007.Reverse Integer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
把一个整数倒序输出。
要考虑倒序后溢出int上限,可以用longlong存储。
int的负上限要单独考虑,对负上限取负,仍然是它本身。