Skip to content

Commit b237d57

Browse files
authored
Update 9、回文数.md
1 parent e5bd611 commit b237d57

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

9、回文数.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ c语言实现
8787
```c
8888
bool isPalindrome(int x){
8989
int revertNum = 0;
90+
9091
if(x==0||(x<10&&x>0)){
9192
return true;
9293
}else if(x<0||x%10==0){

0 commit comments

Comments
 (0)